17 lines
405 B
Dart
17 lines
405 B
Dart
import 'package:fitnessapp/Views/custom_drawer.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'workouts_view.dart';
|
|
|
|
class HomescreenView extends StatelessWidget{
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// TODO: implement build
|
|
return Scaffold(
|
|
drawer: CustomDrawer(),
|
|
appBar: AppBar(
|
|
title: Text("Workouts"),
|
|
),
|
|
body: WorkoutsView(),
|
|
);
|
|
}
|
|
} |