Init
This commit is contained in:
commit
1ba7bd9153
96 changed files with 2985 additions and 0 deletions
27
lib/main.dart
Normal file
27
lib/main.dart
Normal file
|
@ -0,0 +1,27 @@
|
|||
import 'package:desktopapp/classes/routes.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
Future<void> main() async {
|
||||
runApp(const MyApp());
|
||||
}
|
||||
|
||||
class MyApp extends StatelessWidget {
|
||||
const MyApp({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'Streamlabs connector',
|
||||
debugShowCheckedModeBanner: false,
|
||||
theme: ThemeData(
|
||||
splashFactory: InkRipple.splashFactory,
|
||||
),
|
||||
darkTheme: ThemeData.dark().copyWith(
|
||||
splashFactory: InkRipple.splashFactory,
|
||||
),
|
||||
themeMode: ThemeMode.dark,
|
||||
routes: routes,
|
||||
initialRoute: initialRoute,
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue