- It contains a main.dart file as entry point:
import 'package:flutter/material.dart';
import 'package:spanishaudio/home_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: "Spanish Audio App",
theme: ThemeData(
primarySwatch: Colors.grey,
),
home: HomePage(),
);
}
}
- A home_page.dart file that contains all the main function and the stateful widget
- And a number_audio.dart file act as a helper class
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.