Skip to content

Commit a698fdf

Browse files
committed
Update outdated deps
1 parent 1c0d900 commit a698fdf

8 files changed

Lines changed: 14 additions & 497 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
.pub-cache/
3030
.pub/
3131
build/
32+
pubspec.lock
3233

3334
# Android related
3435
**/android/**/gradle-wrapper.jar

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.2.0
2+
3+
Update Dart to 3.3.0.
4+
15
## 2.1.2
26

37
* Fixes url launch configuration in example on Android.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ A template for plugin examples
77
How to use this package:
88

99
Add the dependency in the yaml of the example:
10+
1011
```
1112
dependencies:
1213
baseflow_plugin_template: ^2.1.2
1314
```
1415

1516
And run the template app:
17+
1618
```dart
1719
runApp(BaseflowPluginExample(
1820
pluginName: 'test plugin',

example/pubspec.lock

Lines changed: 0 additions & 249 deletions
This file was deleted.

example/pubspec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
55
version: 1.0.0
66

77
environment:
8-
sdk: ">=2.7.0 <3.0.0"
8+
sdk: ^3.3.0
9+
flutter: '>=3.19.0'
910

1011
dependencies:
1112
flutter:

lib/src/app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class BaseflowPluginExample extends StatelessWidget {
3232
theme: ThemeData(
3333
colorScheme: Theme.of(context).colorScheme.copyWith(
3434
secondary: Colors.white60,
35-
background: const Color.fromRGBO(48, 49, 60, 0.8),
35+
surface: const Color.fromRGBO(48, 49, 60, 0.8),
3636
),
3737
buttonTheme: ButtonThemeData(
3838
buttonColor: themeMaterialColor.shade500,

0 commit comments

Comments
 (0)