CKT String|Colors
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import '../colors/app_colors.dart';
|
||||
import '../strings/splash_strings.dart';
|
||||
|
||||
class HelloSplashScreen extends StatefulWidget {
|
||||
const HelloSplashScreen({super.key, required this.onFinished, this.duration = const Duration(seconds: 5)});
|
||||
@@ -76,7 +78,7 @@ class _HelloSplashScreenState extends State<HelloSplashScreen> with TickerProvid
|
||||
child: Container(
|
||||
width: size.width,
|
||||
height: size.height,
|
||||
color: const Color(0xFFFAFAF7),
|
||||
color: AppColors.background,
|
||||
child: SafeArea(
|
||||
child: Center(
|
||||
child: Column(
|
||||
@@ -85,12 +87,12 @@ class _HelloSplashScreenState extends State<HelloSplashScreen> with TickerProvid
|
||||
ScaleTransition(
|
||||
scale: _pop,
|
||||
child: const Text(
|
||||
'Olá',
|
||||
SplashStrings.greeting,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: 64,
|
||||
fontWeight: FontWeight.w900,
|
||||
color: Color(0xFFFF9AD0),
|
||||
color: AppColors.pinkLight,
|
||||
height: 1.0,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user