Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import 'package:flutter/material.dart';
- void main() {
- runApp(const MainApp());
- }
- class MainApp extends StatelessWidget {
- const MainApp({super.key});
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- title: 'Belajar Flutter',
- debugShowCheckedModeBanner: false,
- home: Scaffold(
- appBar: AppBar(
- title: Text('LATIHAN MD'),
- ),
- body: Center(
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Icon(
- Icons.home,
- color: Colors.red,
- size: 70,
- ),
- SizedBox(height: 50),
- Text(
- 'STMIK ROYAL',
- style: TextStyle(
- color: Colors.green,
- fontSize: 40,
- fontWeight: FontWeight.bold,
- decoration: TextDecoration.underline,
- ),
- ),
- SizedBox(height: 50),
- MaterialButton(
- onPressed: () {
- //logika aksi tombol ketika ditekan
- },
- color: Colors.blue,
- textColor: Colors.white,
- child: Text('LOGIN'),
- minWidth: 200,
- height: 50,
- )
- ],
- ),
- ),
- ),
- );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement