flutter_amazon_s3 0.1.2
flutter_amazon_s3: ^0.1.2 copied to clipboard
A flutter plugin for using Amazon S3 service.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState 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 amazon s3'),
),
body: Center(
child: Text('Will be implemented'),
),
),
);
}
}
copied to clipboard