📱
Phone-First Auth
Built for Africa — authenticate users with their phone number and a PIN. No passwords, no emails required.
Phone-first authentication & KYC verification for African applications
Add YeboID to your Flutter app in 3 steps:
dependencies:
yeboid_flutter:
git:
url: https://github.com/omegathesecond/yeboid-flutter.gitimport 'package:yeboid_flutter/yeboid_flutter.dart';
void main() {
runApp(
YeboIDProvider(
config: YeboIDConfig(
clientId: 'your-app-id',
redirectUri: 'yourapp://auth',
),
child: MyApp(),
),
);
}YeboIDLoginButton(
onSuccess: (user) => Navigator.pushNamed(context, '/home'),
onError: (error) => showSnackbar(error),
)That's it! Your users can now authenticate with YeboID.