blob: 394d983ab66ce9d224b19e005bfc9cedf9dca1e5 [file] [log] [blame]
import 'package:flutter/material.dart';
import 'package:ios_platform_images/ios_platform_images.dart';
void main() => runApp(MyApp());
/// Main widget for the example app.
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
IosPlatformImages.resolveURL("textfile").then((value) => print(value));
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
// "pug" is a resource in Assets.xcassets.
child: Image(image: IosPlatformImages.load("flutter")),
),
),
);
}
}