skip to Main Content

Flutter – Access ThemeData property inside ThemeData definition

In my Flutter app I declare ThemeData with a colorSchemeSeed: return MaterialApp( ... theme: ThemeData( useMaterial3: true, visualDensity: VisualDensity.adaptivePlatformDensity, colorSchemeSeed: Colors.blueGrey, ... floatingActionButtonTheme: FloatingActionButtonThemeData( backgroundColor: ? ), ), ... ); I would like to redefine the backgroundColor of the FloatingActionButton…

VIEW QUESTION
Back To Top
Search