You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
619 B

import 'dart:io';
import 'dart:async';
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:sharesdk_plugin_example/home.dart';
import 'package:sharesdk_plugin/sharesdk_plugin.dart';
import 'package:flutter/cupertino.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
//if (Platform.isIOS) {
//}
}
@override
Widget build(BuildContext context) {
return MaterialApp(home: HomePage());
}
}