chore: Update to flutter 3.3.0

This commit is contained in:
Christian Pauly 2022-08-31 19:54:22 +02:00
parent 9ed1fcf2c7
commit 80266df85d
6 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,5 @@
variables:
FLUTTER_VERSION: 3.0.5
FLUTTER_VERSION: 3.3.0
image: cirrusci/flutter:${FLUTTER_VERSION}

View File

@ -335,7 +335,7 @@ class BootstrapDialogState extends State<BootstrapDialog> {
const SizedBox(height: 16),
ElevatedButton.icon(
style: ElevatedButton.styleFrom(
onPrimary: Colors.red,
foregroundColor: Colors.red,
),
icon: const Icon(Icons.delete_outlined),
label: Text(L10n.of(context)!.recoveryKeyLost),

View File

@ -265,7 +265,7 @@ class _ButtonContent extends StatelessWidget {
icon: icon,
label: Text(label, overflow: TextOverflow.ellipsis),
style: OutlinedButton.styleFrom(
primary: textColor,
foregroundColor: textColor,
backgroundColor: Colors.white.withAlpha(64),
),
);

View File

@ -130,7 +130,7 @@ class LoginView extends StatelessWidget {
child: ElevatedButton(
onPressed:
controller.loading ? () {} : controller.passwordForgotten,
style: ElevatedButton.styleFrom(onPrimary: Colors.red),
style: ElevatedButton.styleFrom(foregroundColor: Colors.red),
child: Text(L10n.of(context)!.passwordForgotten),
),
),

View File

@ -2,7 +2,6 @@
import 'dart:convert';
import 'dart:io';
import 'dart:typed_data';
import 'package:flutter/foundation.dart' hide Key;
import 'package:flutter/services.dart';

View File

@ -1,6 +1,5 @@
import 'dart:convert';
import 'dart:io';
import 'dart:typed_data';
import 'package:flutter/foundation.dart' hide Key;
import 'package:flutter/services.dart';