REVIEW FOTO PROFIL PRIBADI
import 'package:flutter/material.dart' ; void main() { runApp( MyApp ()); } class MyApp extends StatelessWidget { @override Widget build( BuildContext context) { return MaterialApp ( title: 'Kartu Profil - Aku & Hobiku' , debugShowCheckedModeBanner: false , theme: ThemeData ( primarySwatch: Colors .lightBlue, ), home: ProfilePage (), ); } } class ProfilePage extends StatelessWidget { @override Widget build( BuildContext context) { return Scaffold ( backgroundColor: Colors .lightBlue[ 50 ], appBar: AppBar ( backgroundColor: Colors .lightBlue, title: Text ( "Kartu Profil — Aku & Hobiku" ), centerTitle: true , ...