mobile_protect 22.3.14 copy "mobile_protect: ^22.3.14" to clipboard
mobile_protect: ^22.3.14 copied to clipboard

Data Theorem's Mobile Protect SDK for mobile Flutter applications

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MPExampleApp());
}

class MPExampleApp extends StatelessWidget {
  const MPExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Mobile Protect Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {

    return Scaffold(
      appBar: AppBar(
        title: const Text("Mobile Protect Example"),
      ),
      body: const Center(
        child:  Text(
              'Mobile Protect is running in this app',
            ),
      )
    );
  }
}
0
likes
150
points
1.3k
downloads

Publisher

verified publisherdatatheorem.com

Weekly Downloads

Data Theorem's Mobile Protect SDK for mobile Flutter applications

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on mobile_protect