Skill yang Harus Dikuasai dalam Pelatihan Junior Mobile Programmer untuk Sertifikasi BNSP
11-Oct-2025
Pembuat : Admin Mobile Faculty
Kategori : Media Pembelajaran
import package:flutter/material.dart;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: Todo List,
home: TodoApp(),
);
}
}
class TodoApp extends StatefulWidget {
@override
_TodoAppState createState() => _TodoAppState();
}
class _TodoAppState extends State<TodoApp> {
final List<String> _tasks = [];
final TextEditingController _controller = TextEditingController();
void _addTask() {
setState(() {
_tasks.add(_controller.text);
_controller.clear();
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(Daftar Tugas),
),
body: Column(
children: [
TextField(
controller: _controller,
decoration: InputDecoration(labelText: Masukkan Tugas),
),
ElevatedButton(
onPressed: _addTask,
child: Text(Tambahkan Tugas),
),
Expanded(
child: ListView.builder(
itemCount: _tasks.length,
itemBuilder: (context, index) {
return ListTile(
title: Text(_tasks[index]),
);
},
),
),
],
),
);
}
}
| Hari | Waktu | Materi |
|---|---|---|
| 1 | 09:00-10:30 | Pengenalan Mobile Programming dan Teknologi |
| 1 | 10:30-12:00 | Penggunaan Framework Flutter dan Dart |
| 1 | 12:00-13:00 | Istirahat |
| 1 | 13:00-14:30 | Desain UI yang Efektif dalam Aplikasi Mobile |
| 1 | 14:30-16:00 | Praktik: Membuat Aplikasi Sederhana (Todo List) |
| 2 | 09:00-10:30 | Pemrograman Responsif dan Manajemen State |
| 2 | 10:30-12:00 | Integrasi Backend dan API dalam Aplikasi |
| 2 | 12:00-13:00 | Istirahat |
| 2 | 13:00-14:30 | Uji Coba dan Debugging |
| 2 | 14:30-16:00 | Persiapan Uji Kompetensi BNSP |