MIF_E31222854_MOBILE/lib/view/pengajar/profile/profile.dart

26 lines
561 B
Dart

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