commit
ed66e21aff
@ -1,60 +0,0 @@
|
||||
|
||||
|
||||
//import '../sleep_tracker/sleep_tracker_view.dart';
|
||||
/*
|
||||
class SelectView extends StatelessWidget {
|
||||
const SelectView({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// var media = MediaQuery.of(context).size;
|
||||
|
||||
return Scaffold(
|
||||
body: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 20),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
RoundButton(
|
||||
title: "Workout Tracker",
|
||||
onPressed: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const BlankView(),
|
||||
),
|
||||
);
|
||||
}),
|
||||
const SizedBox(
|
||||
height: 15,
|
||||
),
|
||||
RoundButton(
|
||||
title: "Meal Planner",
|
||||
onPressed: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const BlankView(),
|
||||
),
|
||||
);
|
||||
}),
|
||||
const SizedBox(
|
||||
height: 15,
|
||||
),
|
||||
RoundButton(
|
||||
title: "Sleep Tracker",
|
||||
onPressed: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const BlankView(),
|
||||
),
|
||||
);
|
||||
})
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
*/
|
Loading…
Reference in new issue