GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
220 B

2 months ago
  1. import 'package:flutter/material.dart';
  2. class BeritaScreen extends StatelessWidget {
  3. const BeritaScreen({Key? key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container();
  7. }
  8. }