https://github.com/doo/my_awesome_flutter_app
Flutter tutorial app
https://github.com/doo/my_awesome_flutter_app
List: my_awesome_flutter_app
Last synced: 3 months ago
JSON representation
Flutter tutorial app
- Host: GitHub
- URL: https://github.com/doo/my_awesome_flutter_app
- Owner: doo
- Created: 2019-11-08T10:18:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T14:56:38.000Z (over 6 years ago)
- Last Synced: 2025-03-17T22:08:11.067Z (over 1 year ago)
- Language: Dart
- Homepage: https://scanbot.io/blog/scanner-sdk-for-flutter-tutorial
- Size: 54.7 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Awesome Flutter App
A simple Flutter demo app based on the tutorial in the blog post
["Integrating the Scanbot SDK in a Flutter app"](https://scanbot.io/blog/scanner-sdk-for-flutter-tutorial/).
For a **full** example project which demonstrates **all** API methods of the Scanbot SDK Flutter Plugin
see the repo [scanbot-sdk-example-flutter](https://github.com/doo/scanbot-sdk-example-flutter).
## How to run this app
Install [Flutter](https://flutter.dev) and all required dev tools.
Fetch this repository and navigate to the project directory.
```
cd my_awesome_flutter_app/
```
Fetch and install the dependencies of this example project via Flutter CLI:
```
flutter pub get
```
Connect a mobile device via USB and run the app.
**Android:**
```
flutter run -d
```
You can get the IDs of all connected devices via `flutter devices`.
**iOS:**
Install Pods dependencies:
```
cd ios/
pod install
```
Open the **workspace**(!) `ios/Runner.xcworkspace` in Xcode and adjust the *Signing / Developer Account* settings.
Then build and run the app in Xcode.