diff --git a/lib/theming/darkAppTheme.dart b/lib/theming/darkAppTheme.dart index ee7ac7f..4bc9850 100644 --- a/lib/theming/darkAppTheme.dart +++ b/lib/theming/darkAppTheme.dart @@ -43,5 +43,11 @@ class DarkAppTheme { checkboxTheme: CheckboxThemeData( fillColor: MaterialStateProperty.resolveWith((states) => states.contains(MaterialState.selected) ? marianumRed : Colors.transparent), ), + textButtonTheme: TextButtonThemeData( + style: TextButton.styleFrom( + foregroundColor: Colors.white, + backgroundColor: marianumRed.withOpacity(0.5), + ), + ), ); } \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index 84b0535..0ed01f6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.0.3+27 +version: 0.0.4+28 environment: sdk: '>3.0.0'