Integration

Flutter and Dart

Flutter is a free and open-source mobile UI framework that has been gaining a lot of popularity. Here we will see how we can use our Headless CMS to power the contents for your Flutter and Dart apps.

For Dart applications you can run the below command to install Dialoguewise

dart pub add dialogue_wise

In case of Flutter applications, you will need to run

flutter pub add dialogue_wise

Once the installation is complete, you should be able see an entry like this to your package’s pubspec.yaml

dependencies:
  dialogue_wise: ^3.0.0

Next, you need to import the Dialoguewise package in your dart file

import 'package:dialogue_wise/dialoguewise.dart';

You’ve now integrated Dialoguewise with your app. The following documents will now explain how you can get contents and display them in your app.

You can also have a look at the examples available on Github.