mobile_protect 22.3.12 mobile_protect: ^22.3.12 copied to clipboard
Data Theorem's Mobile Protect SDK for mobile Flutter applications
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',
),
)
);
}
}