flukki_product_tours 1.0.2 flukki_product_tours: ^1.0.2 copied to clipboard
First no-code product tour builder for Flutter. Made for non-tech people by Flutter enthusiasts
First no-code product tour builder for Flutter https://www.flukki.com/
Flukki SDK + product tours builder #
One day I was thinking, what cool Flutter project I can create. And here we are today :)
User perspective #
Builder #
Limitations #
This is the very beginning of our story, and please be aware, that you will possibly experience:
- Plugin is fragile for widget tree changes. For example you will wrap your pointed widget with Center, or some other widget and plugin will stop to recognize the original widget.
- On web you should use CanvasKit renderer instead of the HTML one, because overlays were not working properly there
- Not the best visual experience yet - we are open for feedback and suggestions
- Performance is still not the best
Advantages #
After creating an account at https://www.flukki.com/ you will be able to get your key (it will be needed during configuration). Flukki will help you in:
- building product tours without coding, inside of your app. You will achieve thd best UX by building a product tour on web
- measure stats, like skip rate or success rate
- delivering new and updated product tours to your users without app store deploy
Configuration #
- Add Flukki to you project
dependencies:
flukki_product_tours: ^1.0.0
- Initialize the Flukki widgets binding at the very beginning of your main function
void main() {
FlukkiWidgetsFlutterBinding.ensureInitialized()
- Initialize the plugin
Flukki.instance.initialize(appName: 'Awesome app', key: key)
- Wrap your app with our widget
return MaterialApp(
home: FlukkiProductTour(
child: Scaffold(
- Turn on the builder
Flukki.instance.turnOnBuilder()
That's all, now publish your app, create a product tour and we will take care about everything else