local_image_provider 4.3.0
local_image_provider: ^4.3.0 copied to clipboard
A library for retrieving the metadata and contents of the images, videos, and albums on a mobile device.
import 'package:flutter/material.dart';
import 'package:local_image_provider_example/local_image_body_widget.dart';
void main() => runApp(ExampleApp());
/// A simple application that shows the functionality of the
/// local_image_provider plugin.
///
/// See [LocalImageBodyWidget] for the main part of the
/// example app.
class ExampleApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: LocalImageBodyWidget(),
);
}
}
copied to clipboard