Flutter remove border expansion tile

You can wrap it in a Theme widget and do like this: Theme( data: ThemeData().copyWith(dividerColor: Colors.transparent), child: ExpansionTile( or if you’re using custom theme settings, you can use Theme.of(context) instead of ThemeData() like this: Theme( data: Theme.of(context).copyWith(dividerColor: Colors.transparent), child: ExpansionTile(

Transparent bottom navigation bar in flutter

None of the given answers worked for me and I figured out something very important: you have to add the property extendBody: true If true, and bottomNavigationBar or persistentFooterButtons is specified, then the body extends to the bottom of the Scaffold, instead of only extending to the top of the bottomNavigationBar or the persistentFooterButtons. This … Read more

How to rotate an image using Flutter AnimationController and Transform?

Full example (null safe): Press “go” makes the star icon spin until you press “stop”. import ‘package:flutter/material.dart’; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MyHomePage(), ); } } class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> with SingleTickerProviderStateMixin … Read more