mobile_protect 24.3.1 mobile_protect: ^24.3.1 copied to clipboard
Data Theorem's Mobile Protect SDK for mobile Flutter applications
import 'package:flutter/material.dart';
import 'ui/root_page.dart';
void main() {
runApp(const InternalExampleApp());
}
class InternalExampleApp extends StatefulWidget {
const InternalExampleApp({Key? key})
: super(
key: key,
);
@override
State createState() => _InternalExampleAppState();
}
class _InternalExampleAppState extends State<InternalExampleApp> {
static const title = 'Instrumentation Example';
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: title, home: RootPage(title: title));
}
}