Files
ything_radio/lib/YthingRadio.dart

25 lines
618 B
Dart

import 'package:flutter/material.dart';
import 'HomePage.dart';
class YthingRadio extends StatelessWidget {
const YthingRadio({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Ything Radio',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.orange,
dynamicSchemeVariant: DynamicSchemeVariant.fidelity,
),
useMaterial3: true,
),
home: const HomePage(title: 'Ything Radio'),
);
}
}