Skip to content

Commit

Permalink
chore: flutter 3.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckUVeryX committed Aug 8, 2024
1 parent f0935ec commit b904c2f
Show file tree
Hide file tree
Showing 5 changed files with 112 additions and 102 deletions.
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"flutter": "3.22.3",
"flutter": "3.24.0",
"flavors": {}
}
2 changes: 1 addition & 1 deletion ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Flutter
import awesome_notifications
import shared_preferences_foundation

@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
Expand Down
25 changes: 11 additions & 14 deletions lib/modules/notifications/views/widgets/duration_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -710,20 +710,17 @@ class DurationPickerDialogState extends State<DurationPickerDialog> {
),
);

final Widget actions = ButtonBarTheme(
data: ButtonBarTheme.of(context),
child: ButtonBar(
children: <Widget>[
TextButton(
onPressed: _handleCancel,
child: Text(localizations.cancelButtonLabel),
),
TextButton(
onPressed: _handleOk,
child: Text(localizations.okButtonLabel),
),
],
),
final Widget actions = OverflowBar(
children: <Widget>[
TextButton(
onPressed: _handleCancel,
child: Text(localizations.cancelButtonLabel),
),
TextButton(
onPressed: _handleOk,
child: Text(localizations.okButtonLabel),
),
],
);

final dialog = Dialog(
Expand Down
Loading

0 comments on commit b904c2f

Please sign in to comment.