calls/lib/main.dart

27 lines
594 B
Dart
Raw Normal View History

2024-08-06 22:37:33 -04:00
import 'package:flutter/material.dart';
2024-08-10 13:27:12 -04:00
import 'views/radio.dart';
2024-08-06 22:37:33 -04:00
void main() {
2024-08-11 23:59:01 -04:00
runApp(const CallsApp());
2024-08-06 22:37:33 -04:00
}
2024-08-11 23:59:01 -04:00
class CallsApp extends StatelessWidget {
const CallsApp({super.key});
2024-08-06 22:37:33 -04:00
@override
Widget build(BuildContext context) {
return MaterialApp(
2024-08-08 18:31:24 -04:00
title: 'Stillbox Calls',
2024-08-06 22:37:33 -04:00
theme: ThemeData(
2024-08-08 18:31:24 -04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
2024-08-06 22:37:33 -04:00
useMaterial3: true,
),
2024-08-08 18:31:24 -04:00
darkTheme: ThemeData(
brightness: Brightness.dark,
),
themeMode: ThemeMode.dark,
home: const MainRadio(title: 'Stillbox'),
2024-08-06 22:37:33 -04:00
);
}
}