101 lines
3.9 KiB
Dart
101 lines
3.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:qpay/models/responsive_policy.dart';
|
|
import 'package:qpay/screens/onboarding/login/login_controller.dart';
|
|
|
|
class LandingScreen extends StatefulWidget {
|
|
const LandingScreen({super.key});
|
|
|
|
@override
|
|
State<LandingScreen> createState() => _LandingScreenState();
|
|
}
|
|
|
|
class _LandingScreenState extends State<LandingScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: SingleChildScrollView(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(25),
|
|
child: Center(
|
|
child: LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
final maxWidth = constraints.maxWidth > ResponsivePolicy.md
|
|
? ResponsivePolicy.md.toDouble()
|
|
: constraints.maxWidth;
|
|
return SizedBox(
|
|
width: maxWidth,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
SizedBox(height: 75),
|
|
Text(
|
|
'Welcome to Velocity',
|
|
style: TextStyle(
|
|
fontSize: 30,
|
|
fontWeight: FontWeight.bold,
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
),
|
|
SizedBox(height: 5),
|
|
Text(
|
|
'The fastest way to pay for local goods and services',
|
|
style: TextStyle(fontSize: 18),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
Image.asset('assets/landing.png', width: 300),
|
|
Image.asset('assets/velocity.png', width: 150),
|
|
SizedBox(height: 5),
|
|
Text(
|
|
'Register or login to get started',
|
|
style: TextStyle(fontSize: 16),
|
|
),
|
|
SizedBox(height: 50),
|
|
Column(
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 25),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: ElevatedButton(
|
|
onPressed: () {
|
|
context.go('/onboarding/register');
|
|
},
|
|
child: Text('Register', style: TextStyle(fontSize: 16)),
|
|
),
|
|
),
|
|
SizedBox(width: 16),
|
|
Expanded(
|
|
child: OutlinedButton(
|
|
onPressed: () {
|
|
context.go('/onboarding/login');
|
|
},
|
|
child: Text('Login', style: TextStyle(fontSize: 16)),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
SizedBox(height: 10),
|
|
TextButton(
|
|
onPressed: () {
|
|
context.go('/');
|
|
},
|
|
child: Text('Continue as guest?', style: TextStyle(fontSize: 14)),
|
|
),
|
|
],
|
|
)
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|