Release v0.0.9 (#10)

* chore: update flutter, prepare to 0.0.9

* chore: update example
This commit is contained in:
Kseniia Nikitina
2024-08-10 22:10:08 +02:00
committed by GitHub
parent a5c77f58e5
commit 7f8cbbffae
13 changed files with 36 additions and 23 deletions
+3
View File
@@ -41,3 +41,6 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release
# FVM Version Cache
.fvm/
@@ -216,7 +216,7 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
+1 -1
View File
@@ -1,7 +1,7 @@
import UIKit
import Flutter
@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
@@ -116,7 +116,7 @@ class _InfoChip extends StatelessWidget {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(16),
color: Theme.of(context).colorScheme.background,
color: Theme.of(context).colorScheme.surface,
boxShadow: [
BoxShadow(
blurRadius: 2,
@@ -133,13 +133,13 @@ class _InfoChip extends StatelessWidget {
'$label: ',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Theme.of(context).colorScheme.onBackground,
color: Theme.of(context).colorScheme.onSurface,
),
),
Text(
value,
style: TextStyle(
color: Theme.of(context).colorScheme.onBackground,
color: Theme.of(context).colorScheme.onSurface,
),
),
],
@@ -26,11 +26,13 @@ class _CheckServiceViewState extends State<CheckServiceView> {
setState(() {
showEnableButton = true;
});
AppShackBar.show(
context,
'Please enable Wi-fi',
actionType: ActionType.warning,
);
if (context.mounted) {
AppShackBar.show(
context,
'Please enable Wi-fi',
actionType: ActionType.warning,
);
}
}
});
},