This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// OnboardingService Usage Examples | |
// Based on abis_recipes Flutter app implementation | |
import 'package:flutter/material.dart'; | |
import 'package:services/onboarding_service.dart'; | |
/// Complete example showing how to implement onboarding tips in your Flutter app | |
class OnboardingExamplePage extends StatefulWidget { | |
@override | |
_OnboardingExamplePageState createState() => _OnboardingExamplePageState(); |