Skip to content

nit-ap/Spanish-Audio-App

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spanishaudio player app to learn spanish speaking

This app provides a guided way how to get started with audio in android using flutter

If you will click on the button it will spaek specific chracter in spanish

The structure of app:

  • 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

The ui of app look like:

Getting Started

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.

About

Spanish number speaking android/ios app

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 85.2%
  • Swift 10.5%
  • Kotlin 3.3%
  • Objective-C 1.0%