LifeFlow/android/lib/screens/routines/routines_screen.dart

43 lines
1.1 KiB
Dart

import 'package:flutter/material.dart';
class RoutinesScreen extends StatelessWidget {
const RoutinesScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('My Routines'),
actions: [
IconButton(
icon: const Icon(Icons.filter_list),
onPressed: () {},
),
],
),
body: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.checklist, size: 64, color: Colors.grey),
SizedBox(height: 16),
Text(
'Your routines will appear here',
style: TextStyle(fontSize: 18, color: Colors.grey),
),
SizedBox(height: 8),
Text(
'Tap + to add your first routine',
style: TextStyle(color: Colors.grey),
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: const Icon(Icons.add),
),
);
}
}