quixxi 1.0.0 copy "quixxi: ^1.0.0" to clipboard
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(),
    );
  }
}
6
likes
130
points
351
downloads

Publisher

verified publisherquixxi.com

Weekly Downloads

Flutter plugin for adding SSL Pinning to application, Prevent copy and paste inside the application, Prevent misuse of APIs using API attestion

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

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

More

Packages that depend on quixxi

Packages that implement quixxi