amplify_flutter_ios 1.0.0 amplify_flutter_ios: ^1.0.0 copied to clipboard
The method channel implementation for amplify_flutter on iOS
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// ignore_for_file: public_member_api_docs
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@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_flutter method channel. Please see
the example app in the main amplify_flutter repository for a
functional example app.'''),
),
),
);
}
}