An open API service indexing awesome lists of open source software.

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

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.