TKK_E32230502/lib/screen/welcome.dart

158 lines
5.8 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart';
import '../widgets/fade_in_up.dart';
class WelcomePage extends StatelessWidget {
const WelcomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
width: double.infinity,
height: double.infinity,
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Colors.white, Color(0xFFE3F2FD), Color(0xFF42A5F5), Color(0xFF1565C0)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
stops: [0.1, 0.4, 0.8, 1.0],
),
),
child: SafeArea(
child: SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints(
minHeight: MediaQuery.of(context).size.height - MediaQuery.of(context).padding.top - MediaQuery.of(context).padding.bottom,
),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const SizedBox(height: 50),
/// LOGO + TITLE
FadeInUp(
delay: 200,
child: Column(
children: [
Hero(
tag: 'app_logo',
child: Image.asset('assets/images/logo_formalin.png', height: 200),
),
const SizedBox(height: 30),
Container(
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 6),
decoration: BoxDecoration(
color: const Color(0xFF1565C0).withOpacity(0.1),
borderRadius: BorderRadius.circular(20),
),
child: const Text(
"SMART FOOD DETECTION SYSTEM",
style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.w600,
color: Color(0xFF1565C0),
letterSpacing: 1.2,
),
),
),
],
),
),
/// BUTTON AREA
FadeInUp(
delay: 400,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 40),
child: Column(
children: [
/// LOGIN BUTTON
Container(
width: double.infinity,
height: 55,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: const Color(0xFF1565C0).withOpacity(0.3),
blurRadius: 15,
offset: const Offset(0, 8),
),
],
),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.transparent,
shadowColor: Colors.transparent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () {
Navigator.pushNamed(context, '/login');
},
child: const Text(
"Login",
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: Color(0xFF1565C0),
letterSpacing: 1.2,
),
),
),
),
const SizedBox(height: 20),
/// SIGN UP BUTTON
Container(
width: double.infinity,
height: 55,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(30),
border: Border.all(color: Colors.white, width: 2),
),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.transparent,
shadowColor: Colors.transparent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () {
Navigator.pushNamed(context, '/signup');
},
child: const Text(
"Sign Up",
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.white,
letterSpacing: 1.2,
),
),
),
),
],
),
),
),
const SizedBox(height: 30),
],
),
),
),
),
),
);
}
}