Mobile and web versions
This commit is contained in:
13
lib/main_mobile.dart
Normal file
13
lib/main_mobile.dart
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user