Merge branch 'dev' of github.com:refilc/naplo into dev

This commit is contained in:
Kima 2023-09-18 19:30:01 +02:00
commit 4b8dbf0691
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ dependencies:
quick_actions: ^1.0.1 quick_actions: ^1.0.1
animated_list_plus: ^0.5.0 animated_list_plus: ^0.5.0
dynamic_color: ^1.2.2 dynamic_color: ^1.2.2
material_color_utilities: ^0.2.0 material_color_utilities: ^0.5.0
crypto: ^3.0.2 crypto: ^3.0.2
elegant_notification: ^1.6.1 elegant_notification: ^1.6.1
flutter_feather_icons: ^2.0.0+1 flutter_feather_icons: ^2.0.0+1

View File

@ -15,11 +15,11 @@ import 'login_screen.i18n.dart';
const LinearGradient _backgroundGradient = LinearGradient( const LinearGradient _backgroundGradient = LinearGradient(
colors: [ colors: [
Color.fromARGB(255, 0, 0, 0), Color.fromARGB(255, 61, 122, 244),
Color.fromARGB(255, 23, 77, 185), Color.fromARGB(255, 23, 77, 185),
Color.fromARGB(255, 7, 42, 112), Color.fromARGB(255, 7, 42, 112),
], ],
begin: Alignment(-0.8, -2), begin: Alignment(-0.8, -2.0),
end: Alignment(0.8, 1.0), end: Alignment(0.8, 1.0),
stops: [-1.0, 0.0, 1.0], stops: [-1.0, 0.0, 1.0],
); );
@ -90,7 +90,7 @@ class _LoginScreenState extends State<LoginScreen> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: Container( body: Container(
decoration: BoxDecoration( decoration: const BoxDecoration(
gradient: _backgroundGradient, gradient: _backgroundGradient,
), ),
child: SafeArea( child: SafeArea(