MIF_E31222854_MOBILE/lib/view/pengajar/kemajuan/kemajuan.dart

26 lines
567 B
Dart

import 'package:flutter/material.dart';
class KemajuanPage extends StatelessWidget {
const KemajuanPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Kemajuan'),
automaticallyImplyLeading: false,
),
body: const Center(
child: Text(
'Kemajuan Pembelajaran Anda',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: Colors.black,
),
),
),
);
}
}