quixxi 1.0.0
quixxi: ^1.0.0 copied to clipboard
Flutter plugin for adding SSL Pinning to application, Prevent copy and paste inside the application, Prevent misuse of APIs using API attestion
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:quixxi_shield_plugin_example/Screens/dashboard.dart';
import 'helper/AppConstants/app_constants.dart';
import 'helper/CustomColors/custom_colors.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 MaterialApp(
title: AppConstants.appName,
theme: ThemeData(
useMaterial3: false,
colorScheme: ColorScheme.fromSeed(
seedColor: CustomColors.themeColor,
brightness: Brightness.light,
),
),
debugShowCheckedModeBanner: false,
home: const DashboardScreen(),
);
}
}