TempoFlow/lib/pages/about_page.dart

91 lines
2.7 KiB
Dart

import 'package:flutter/material.dart';
import '../theme/app_theme.dart';
class AboutPage extends StatelessWidget {
const AboutPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppTheme.bgLight,
appBar: AppBar(
title: const Text("About"),
centerTitle: true,
backgroundColor: Colors.transparent,
),
body: Center(
child: Padding(
padding: const EdgeInsets.all(40.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
width: 100,
height: 100,
decoration: BoxDecoration(
color: AppTheme.primary,
borderRadius: BorderRadius.circular(24),
boxShadow: AppTheme.softShadow,
),
child: const Icon(
Icons.hourglass_empty_rounded,
size: 50,
color: Colors.white,
),
),
const SizedBox(height: 24),
const Text(
"T E M P O",
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.w900,
letterSpacing: 4,
color: AppTheme.textMain,
),
),
const SizedBox(height: 8),
const Text(
"Find your flow.",
style: TextStyle(
color: AppTheme.textSub,
fontSize: 18,
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: 48),
const Text(
"Tempo is a minimalist productivity tool designed to help you enter flow state effortlessly.",
textAlign: TextAlign.center,
style: TextStyle(
height: 1.6,
color: AppTheme.textMain,
fontWeight: FontWeight.w500,
fontSize: 15,
),
),
const Spacer(),
const Text(
"Designed & Built with Flutter",
style: TextStyle(
color: Colors.grey,
fontSize: 13,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 8),
const Text(
"© 2024 Tempo Inc.",
style: TextStyle(
color: Colors.grey,
fontSize: 13,
fontWeight: FontWeight.bold,
),
),
],
),
),
),
);
}
}