diff --git a/lib/okna/jidelnicek.dart b/lib/okna/jidelnicek.dart index e6834c6..444cd0a 100644 --- a/lib/okna/jidelnicek.dart +++ b/lib/okna/jidelnicek.dart @@ -313,9 +313,6 @@ class _JidelnicekPageState extends State { title: Text(Languages.of(context)!.warning), content: Text(Languages.of(context)!.signOutWarn), actions: [ - TextButton( - onPressed: () => Navigator.of(context).pop(), - child: Text(Languages.of(context)!.yes)), TextButton( onPressed: () { const storage = FlutterSecureStorage(); @@ -323,6 +320,9 @@ class _JidelnicekPageState extends State { Navigator.pushReplacement(context, MaterialPageRoute(builder: (c) => const LoginPage())); }, + child: Text(Languages.of(context)!.yes)), + TextButton( + onPressed: () => Navigator.of(context).pop(), child: Text(Languages.of(context)!.no)) ], ), diff --git a/pubspec.yaml b/pubspec.yaml index 4cd6527..8ecafd0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: 'none' # The following defines the version and build number for your application. # A version number is three numbers separated by dots, like 1.2.43 # followed by an optional build number separated by a +. -version: 1.3.1+17 +version: 1.3.1+18 environment: sdk: ">=2.16.1 <3.0.0"