amplify_analytics_pinpoint_ios 0.6.14 amplify_analytics_pinpoint_ios: ^0.6.14 copied to clipboard
The method channel implementation for amplify_analytics_pinpoint on iOS
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: const Center(
child: Text(
'This application serves as a test bed for the iOS implementation of the amplify_analytics_pinpoint method channel. Please see the example app in the main amplify_analytics_pinpoint repository for a functional example app.'),
),
),
);
}
}