You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/ui/attendance/vacation_rule_screen.dart

37 lines
839 B
Dart

import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:mohem_flutter_app/generated/locale_keys.g.dart';
import 'package:mohem_flutter_app/widgets/app_bar_widget.dart';
class VacationRuleScreen extends StatefulWidget {
VacationRuleScreen({Key? key}) : super(key: key);
@override
_VacationRuleScreenState createState() {
return _VacationRuleScreenState();
}
}
class _VacationRuleScreenState extends State<VacationRuleScreen> {
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBarWidget(
context,
title: LocaleKeys.vacationRule.tr(),
),
);
}
}