quixxi 0.0.6 copy "quixxi: ^0.0.6" to clipboard
quixxi: ^0.0.6 copied to clipboard

Flutter plugin for adding SSL Pinning to application, Prevent copy and paste inside the application.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.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(),
    );
  }
}
6
likes
0
points
26
downloads

Publisher

verified publisherquixxi.com

Weekly Downloads

Flutter plugin for adding SSL Pinning to application, Prevent copy and paste inside the application.

Homepage

License

unknown (license)

Dependencies

convert, dio, encrypt, flutter, http, plugin_platform_interface, pointycastle, string_validator

More

Packages that depend on quixxi

Packages that implement quixxi