fia 1.0.2 copy "fia: ^1.0.2" to clipboard
fia: ^1.0.2 copied to clipboard

Fazpass Intelligence Authentication, written in Flutter.

example/lib/main.dart

import 'package:fia_example/pages/home_page.dart';
import 'package:fia_example/pages/login_page.dart';
import 'package:fia_example/pages/validate_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      initialRoute: '/',
      routes: {
        '/': (context) => LoginPage(),
        '/validate': (context) => ValidatePage(),
        '/home': (context) => HomePage(),
      },
    );
  }
}
0
likes
140
points
100
downloads

Publisher

verified publisherfazpass.com

Weekly Downloads

Fazpass Intelligence Authentication, written in Flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on fia

Packages that implement fia