41 lines
1.2 KiB
Markdown
41 lines
1.2 KiB
Markdown
# Create Flutter Framework
|
|
|
|
```
|
|
C:\Users\ph\Desktop\app>flutter create --org com.rwadurian rwa_android_app
|
|
Creating project rwa_android_app...
|
|
Resolving dependencies in `rwa_android_app`... (3.7s)
|
|
Downloading packages...
|
|
Got dependencies in `rwa_android_app`.
|
|
Wrote 130 files.
|
|
|
|
All done!
|
|
You can find general documentation for Flutter at: https://docs.flutter.dev/
|
|
Detailed API documentation is available at: https://api.flutter.dev/
|
|
If you prefer video documentation, consider: https://www.youtube.com/c/flutterdev
|
|
|
|
In order to run your application, type:
|
|
|
|
$ cd rwa_android_app
|
|
$ flutter run
|
|
|
|
Your application code is in rwa_android_app\lib\main.dart.
|
|
```
|
|
|
|
# rwa_android_app
|
|
|
|
A new Flutter project.
|
|
|
|
## 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:
|
|
|
|
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
|
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
|
|
|
For help getting started with Flutter development, view the
|
|
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
|
samples, guidance on mobile development, and a full API reference.
|
|
|