Skip to content

Instantly share code, notes, and snippets.

@antonprafanto
Created February 23, 2021 01:13
Show Gist options
  • Save antonprafanto/e900d309f645a6fe9666dff273ec22d2 to your computer and use it in GitHub Desktop.
Save antonprafanto/e900d309f645a6fe9666dff273ec22d2 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("Aplikasi Pertamaku"),
),
body: Center(
child: Container(
color: Colors.lightGreen,
width: 160,
height: 70,
child: Text(
"Hari ini saya latihan membuat aplikasi sederhana mengggunakan flutter",
maxLines: 4,
))),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment