review tugas foto profil pribadi
foto profil kodingan zapp.run: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Kartu Profil', theme: ThemeData( primarySwatch: Colors.blue, ), home: ProfilePage(), ); } } class ProfilePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Profil Saya'), backgroundColor: Colors.blue, ), body: Center( child: Padding( padding: const EdgeInsets.all(16.0), child: Card( ...