Skip to content

Commit

Permalink
Fixed dark theme icon style
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBananaPants committed Mar 6, 2021
1 parent 319e35c commit 0068e87
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ void main() {
iconTheme: IconThemeData(color: Colors.black),
appBarTheme: AppBarTheme(color: Color(0xFFf3f3f8)),
bottomAppBarColor: Colors.white,
// outlinedButtonTheme: OutlinedButtonThemeData(style: ButtonStyle( ),),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
primary: Color(0xFF3D5AFE), shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(7))))),
Expand All @@ -50,6 +49,11 @@ void main() {
iconTheme: IconThemeData(color: Colors.white),
appBarTheme: AppBarTheme(color: Color(0xFF2b2b2b)),
bottomAppBarColor: Color(0xFF454545),
elevatedButtonTheme: ElevatedButtonThemeData(
style:
ElevatedButton.styleFrom(primary: Color(0xFF3D5AFE), shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(7))))),
outlinedButtonTheme:
OutlinedButtonThemeData(style: ElevatedButton.styleFrom(shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(7))))),
buttonTheme: ButtonThemeData(buttonColor: Color(0xFF3D5AFE), shape: RoundedRectangleBorder(), textTheme: ButtonTextTheme.primary),
floatingActionButtonTheme: FloatingActionButtonThemeData(backgroundColor: Color(0xFF3D5AFE)),
),
Expand Down

0 comments on commit 0068e87

Please sign in to comment.