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.
28 lines
855 B
Dart
28 lines
855 B
Dart
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class AddSickLeavScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppScaffold(
|
|
appBarTitle: TranslationBase.of(context).sickleave,
|
|
body: Center(
|
|
child: Column(
|
|
children: [
|
|
Container(
|
|
padding: EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
color: Colors.red[500],
|
|
),
|
|
borderRadius: BorderRadius.all(Radius.circular(20))),
|
|
child: IconButton(icon: Icon(Icons.add), onPressed: null),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|