All checks were successful
continuous-integration/drone/push Build is passing
20 lines
400 B
Dart
20 lines
400 B
Dart
import 'package:flutter/material.dart';
|
|
import 'kill_switch/screen_killswitch.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Monitor2',
|
|
theme: ThemeData(primarySwatch: Colors.teal),
|
|
home: const KillSwitchHomePage(),
|
|
);
|
|
}
|
|
}
|