https://github.com/imvickykumar999/basics-of-flutter
Help me to kick start with dart... https://www.geeksforgeeks.org/flutter-tutorial/
https://github.com/imvickykumar999/basics-of-flutter
Last synced: 7 months ago
JSON representation
Help me to kick start with dart... https://www.geeksforgeeks.org/flutter-tutorial/
- Host: GitHub
- URL: https://github.com/imvickykumar999/basics-of-flutter
- Owner: imvickykumar999
- Created: 2022-05-22T17:46:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-21T08:07:44.000Z (almost 2 years ago)
- Last Synced: 2025-01-29T15:27:30.012Z (9 months ago)
- Language: Dart
- Homepage: https://docs.flutter.dev/get-started/install/windows
- Size: 11.6 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basics of Flutter
-------------
`To run a Dart file in Flutter, you can:`
- Add a main function with your desired class name
- Right click on the selected file in the project bar of Android Studio
- Select your app from the run configurations drop-down menu in the toolbar`To run a Dart file in Visual Studio Code, you can:`
- Create a folder, such as MyFirstDartProject
- Open the folder with Visual Studio Code
- Add a new file named "MyFirstDart.dart"
- Press "Run and Debug"`To run a Dart file from the command line, you can:`
- Use the Dart VM by running the dart run command in the app's top directory
- Run cd cli
- Run dart run Hello world: 42!
- Dart is a programming language developed by Google for building web and mobile apps, as well as server and desktop applications.