Last updated:
0 purchases
full screen network image
Full Screen Network Image #
The Full Screen Network Image is package to develop your code much faster to display network images in Full screen view.
Also simple and easy to use.
Installation #
Add the latest version of package to your pubspec.yaml
dependencies:
full_screen_network_image: ^1.0.0
copied to clipboard
Import the package and use it in your flutter App.
import 'package:full_screen_network_image/full_screen_network_image.dart';
copied to clipboard
Sample #
Fullscreen NetworkImage
class HomeScreen extends StatelessWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Home Page'),
),
//Add your Image URL to display in full screen view
body: FullScreenNetworkImage('https://picsum.photos/200/300'),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.