29 lines
643 B
Dart
29 lines
643 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:plant_app/components/my_bottom_nav_bar.dart';
|
|
|
|
import 'components/body.dart';
|
|
|
|
class HomeScreen extends StatelessWidget {
|
|
const HomeScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: _buildAppBar(),
|
|
body: const HomeBody(),
|
|
bottomNavigationBar: const MyBottomNavBar(),
|
|
);
|
|
}
|
|
|
|
AppBar _buildAppBar() {
|
|
return AppBar(
|
|
elevation: 0,
|
|
leading: IconButton(
|
|
icon: SvgPicture.asset("assets/icons/menu.svg"),
|
|
onPressed: () {},
|
|
),
|
|
);
|
|
}
|
|
}
|