Posts

Showing posts from August, 2020

Flutter Task-1

Image
Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web  and  desktop  from a single codebase. Main features of Flutter Framework: 1. Fast development 2. Expressive and Flexible UI 3. Native Performance Prerequisties: 1. Flutter SDK installed 2. Android SDK installed 3. VS Code(IDE) 4. Android device or AVD Task1: Flutter App Development‼️ 1.Create a flutter app. 2. Use assets (eg. audios and videos). 3. App will have to play this audios and videos from Assets. 4. Also add Features to play audio and video from Internet(Network). 5. Create buttons like play, pause and stop for audio and video both. lets get Started I will make a Media Player which is capable of playing audios and videos from the internet, Step 1: First using command line I will create flutter app cmd: flutter create <app_name> Step 2: Open vs code Slect the folder then open the main.dart file and remove all the existing code. so that we will build t...