Skip to content

Instantly share code, notes, and snippets.

View WojuadeAA's full-sized avatar
🎯
Focusing

Wojuade Abdul Afeez WojuadeAA

🎯
Focusing
View GitHub Profile
@WojuadeAA
WojuadeAA / example.dart
Created July 23, 2025 10:29 — 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();
@WojuadeAA
WojuadeAA / build.gradle
Created December 18, 2024 20:17 — forked from Software78/build.gradle
LadyBug fix
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
afterEvaluate { project ->