Skip to content

Instantly share code, notes, and snippets.

@perymerdeka
Last active June 26, 2021 12:13
Show Gist options
  • Save perymerdeka/27fc51510cb5b177ed467cbedb7f1d64 to your computer and use it in GitHub Desktop.
Save perymerdeka/27fc51510cb5b177ed467cbedb7f1d64 to your computer and use it in GitHub Desktop.
Flutter App to Display Image
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Image View App'),
),
body: Image.asset('assets/pexels1.jpg'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment