Skip to content

Instantly share code, notes, and snippets.

View GeylanKalafMohe's full-sized avatar

Geylan Kalaf Mohe GeylanKalafMohe

View GitHub Profile
@GeylanKalafMohe
GeylanKalafMohe / example.dart
Created July 23, 2025 16:59 — forked from jtmuller5/onboarding_service.dart
Flutter class for displaying sequential onboarding tips
// 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();