mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
chore: Update to flutter 3.3.0
This commit is contained in:
parent
9ed1fcf2c7
commit
80266df85d
@ -1,5 +1,5 @@
|
|||||||
variables:
|
variables:
|
||||||
FLUTTER_VERSION: 3.0.5
|
FLUTTER_VERSION: 3.3.0
|
||||||
|
|
||||||
image: cirrusci/flutter:${FLUTTER_VERSION}
|
image: cirrusci/flutter:${FLUTTER_VERSION}
|
||||||
|
|
||||||
|
@ -335,7 +335,7 @@ class BootstrapDialogState extends State<BootstrapDialog> {
|
|||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
ElevatedButton.icon(
|
ElevatedButton.icon(
|
||||||
style: ElevatedButton.styleFrom(
|
style: ElevatedButton.styleFrom(
|
||||||
onPrimary: Colors.red,
|
foregroundColor: Colors.red,
|
||||||
),
|
),
|
||||||
icon: const Icon(Icons.delete_outlined),
|
icon: const Icon(Icons.delete_outlined),
|
||||||
label: Text(L10n.of(context)!.recoveryKeyLost),
|
label: Text(L10n.of(context)!.recoveryKeyLost),
|
||||||
|
@ -265,7 +265,7 @@ class _ButtonContent extends StatelessWidget {
|
|||||||
icon: icon,
|
icon: icon,
|
||||||
label: Text(label, overflow: TextOverflow.ellipsis),
|
label: Text(label, overflow: TextOverflow.ellipsis),
|
||||||
style: OutlinedButton.styleFrom(
|
style: OutlinedButton.styleFrom(
|
||||||
primary: textColor,
|
foregroundColor: textColor,
|
||||||
backgroundColor: Colors.white.withAlpha(64),
|
backgroundColor: Colors.white.withAlpha(64),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -130,7 +130,7 @@ class LoginView extends StatelessWidget {
|
|||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed:
|
onPressed:
|
||||||
controller.loading ? () {} : controller.passwordForgotten,
|
controller.loading ? () {} : controller.passwordForgotten,
|
||||||
style: ElevatedButton.styleFrom(onPrimary: Colors.red),
|
style: ElevatedButton.styleFrom(foregroundColor: Colors.red),
|
||||||
child: Text(L10n.of(context)!.passwordForgotten),
|
child: Text(L10n.of(context)!.passwordForgotten),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:typed_data';
|
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart' hide Key;
|
import 'package:flutter/foundation.dart' hide Key;
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:typed_data';
|
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart' hide Key;
|
import 'package:flutter/foundation.dart' hide Key;
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
Loading…
Reference in New Issue
Block a user