Release v0.0.9 (#10)
* chore: update flutter, prepare to 0.0.9 * chore: update example
This commit is contained in:
@@ -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,
|
||||
);
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user