particle_auth 1.3.2 particle_auth: ^1.3.2 copied to clipboard
A flutter plugin project for particle auth
import 'package:flutter/material.dart';
import 'package:oktoast/oktoast.dart';
import 'package:particle_auth_example/auth_demo/auth_demo.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return OKToast(
// 2-A: wrap your app with OKToast
textStyle: const TextStyle(fontSize: 19.0, color: Colors.white),
backgroundColor: Colors.black,
animationCurve: Curves.easeIn,
animationBuilder: const OffsetAnimationBuilder(),
animationDuration: const Duration(milliseconds: 200),
duration: const Duration(seconds: 5),
child: MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Particle Network Flutter Demo '),
),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
//add a button
Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
width: 200,
height: 50,
child: ElevatedButton(
onPressed: () => {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const AuthDemoPage(),
),
)
},
child: const Text(
"Auth Demo",
style: TextStyle(fontSize: 20),
),
)),
),
],
),
),
);
}
}