https://github.com/hashfx/flutter-hello-world
First App in Flutter reference Documentation
https://github.com/hashfx/flutter-hello-world
dart flutter
Last synced: 2 months ago
JSON representation
First App in Flutter reference Documentation
- Host: GitHub
- URL: https://github.com/hashfx/flutter-hello-world
- Owner: hashfx
- Created: 2022-09-04T17:51:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-10T12:14:23.000Z (almost 4 years ago)
- Last Synced: 2025-01-05T03:24:53.790Z (over 1 year ago)
- Topics: dart, flutter
- Language: C++
- Homepage:
- Size: 193 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Infinite scroll list in Flutter
## Flutter: Let's Go 🏁
### On Local Machine
+ [Setup Flutter SDK](https://docs.flutter.dev/get-started/install)
+ [Setup Editor](https://docs.flutter.dev/development/tools)
+ [Create Project on Visual Studio Code](https://docs.flutter.dev/development/tools/vs-code#creating-a-new-project)
+ Upload Code from Local VS Code directory to GitHub
### On GitHub Codespaces
+ Open repo on GitHub Codespaces
+ create a folder ```.devcontainer``` and a file ```devcontainer.json``` in it with following image code
```powershell
{
"image": "cirrusci/flutter:beta",
"forwardPorts": [
3000
]
}
```
+ Rebuild container
+ Run ```Flutter Doctor```
+ Let's Code >> Flutter
### Via Official Initial Flutter Build
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.