membuat app mobile sederhana
Membuat app mobile sederhana 1.membuat tampilan sederhana -appbar dengan judul -body berisi column -minimal 3 widget text dengan kode: import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp( home: HomeScreen(), ); } } class HomeScreen extends StatelessWidget { const HomeScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Latihan'), backgroundColor: Colors.blue, ), body: Padding( padding: const EdgeInsets.all(16.0), child: Column( ...