gssa_autorisation 0.0.3 copy "gssa_autorisation: ^0.0.3" to clipboard
gssa_autorisation: ^0.0.3 copied to clipboard

le package d'autorisation du projet Boutika GSSA.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:gssa_autorisation/gssa_autorisation.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(
      home: Scaffold(
        body: Center(
          child: showPluginPage(),
        ),
      ),
    );
  }
}