bump version to 1.2.0

This commit is contained in:
Adrian Baumgart 2024-03-31 22:21:07 +02:00
parent ec4820a1d1
commit 8590fbb89a
No known key found for this signature in database
2 changed files with 7 additions and 5 deletions

View File

@ -11,11 +11,13 @@ void main() {
class MyApp extends StatelessWidget {
const MyApp({super.key});
static const _defaultLightColorScheme = ColorScheme
.light(); //.fromSwatch(primarySwatch: Colors.blue, backgroundColor: Colors.white);
static final ColorScheme _defaultLightColorScheme = ColorScheme
.fromSeed(seedColor: Colors.blue);
static final _defaultDarkColorScheme =
ColorScheme.fromSwatch(brightness: Brightness.dark);
static final _defaultDarkColorScheme = ColorScheme.fromSeed(
brightness: Brightness.dark,
seedColor: Colors.blue,
background: Colors.black);
// This widget is the root of your application.
@override

View File

@ -16,7 +16,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: 1.1.1+7
version: 1.2.0+8
environment:
sdk: ^3.0.0