mc_auth 0.2.1
mc_auth: ^0.2.1 copied to clipboard
tiko authentication module : version 0.2.1
example/lib/main.dart
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:mc_auth/access_granted.dart';
import 'package:mc_auth/mc_auth.dart';
import 'package:mc_auth/auth_page.dart';
import 'package:mcassets/assets_list.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
final _mcAuthPlugin = McAuth();
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
platformVersion =
await _mcAuthPlugin.getPlatformVersion() ?? 'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = platformVersion;
});
}
@override
Widget build(BuildContext context) {
return ScreenUtilInit(
designSize: Size(MediaQuery.of(context).size.width, MediaQuery.of(context).size.height), // Set the design size based on your design
builder: (context, child) {
return GetMaterialApp(
home: AuthPage(action:(value){
print(value);
var args = {'name':value['name'] ,'email':value["email"]};
Get.off(()=>AccessGranted(),arguments: args);
},myAssets),
);
},
);
}
}
Map<String ,dynamic> myAssets = {'primary_color':primaryColor,'secondary_color':secondaryColor,'text_color':textColor,"bg_color":bgColor};
int primaryColor = 0xffE15101;
int secondaryColor = 0xff04B227;
int textColor = 0xff000000;
int bgColor = 0xffffffff;
int inactiveColor = 0xffF1F1F1;