summaryrefslogtreecommitdiff
path: root/lib/home_page.dart
blob: 83346c4d7e1001f3b98d99cef9491a6562acc174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import 'package:flutter/widgets.dart';
import 'app_bar.dart';

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return const Column(
      children: [
        AppBar(),
        Expanded(
          child: Center(
            child: Text(
              'Home', 
              style: TextStyle(color: Color(0xFFFFFF00))),
          ),
        ),
      ],
    );
  }
}