Mobile and web versions

This commit is contained in:
2024-05-10 19:50:33 +03:00
parent 9d92dfd145
commit 4853f61da2
8 changed files with 317 additions and 255 deletions

13
lib/main_mobile.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
import 'package:gymlink_module_web/states/mobile.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => MyAppStateMobile();
}