-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome_page.dart
57 lines (50 loc) · 1.58 KB
/
welcome_page.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'social_page.dart';
class WelcomePageLoadingScreen extends StatefulWidget {
@override
_WelcomePageLoadingScreenState createState() =>
_WelcomePageLoadingScreenState();
}
class _WelcomePageLoadingScreenState extends State<WelcomePageLoadingScreen> {
Color _loadingColor = Colors.black;
@override
void initState() {
super.initState();
Timer(Duration(seconds: 30), () {
Navigator.pushReplacement(
context,
MaterialPageRoute(builder: (context) => LoginPage()),
);
});
}
// Définir une liste de couleurs
List<Color> _loadingColors = [ Colors.blue, Colors.red, Colors.green, Colors.yellow, ];
// Définir une variable pour stocker l'index de la couleur en cours
int _colorIndex = 0;
// Définir une fonction pour modifier la couleur de remplissage
void _changeLoadingColor() {
setState(() {
_colorIndex = (_colorIndex + 1) % _loadingColors.length;
_loadingColor = _loadingColors[_colorIndex];
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(height: 40.0),
CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(_loadingColor),
),
],
),
),
);
}
}