You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
809 B
29 lines
809 B
import 'package:provider/provider.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/steps.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/graph/graph.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/info.dart' hide Stats;
|
|
import 'package:smartfit_app_mobile/common_widget/stats.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MobileActivity extends StatelessWidget {
|
|
const MobileActivity({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(
|
|
backgroundColor: Colors.white,
|
|
body: Column(
|
|
children: [
|
|
Divider(height: 80),
|
|
Steps(),
|
|
Graph(),
|
|
Info(),
|
|
Divider(height: 30),
|
|
Stats(),
|
|
SizedBox(height: 30),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|