123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605 |
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- import 'package:google_fonts/google_fonts.dart';
- import 'package:hris_selfservice_mobile/Screens/Menu/SuratTugas/history_st.dart';
- import 'package:hris_selfservice_mobile/Screens/Menu/SuratTugas/pengajuan_st.dart';
-
- import '../SlipGaji/background.dart';
- import 'deklarasi_st.dart';
-
- class SuratTugas_Screen extends StatefulWidget {
- const SuratTugas_Screen({Key? key}) : super(key: key);
-
- @override
- State<SuratTugas_Screen> createState() => _SuratTugas_ScreenState();
- }
-
- class _SuratTugas_ScreenState extends State<SuratTugas_Screen> {
- var selectedCategory;
- var selectedDate;
-
- int _value = 0;
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: SingleChildScrollView(
- child: Column(
- children: <Widget>[
- Stack(
- children: [
- WavyHeader(),
- Container(
- margin: EdgeInsets.only(top: MediaQuery.of(context).size.height/6 - 20),
- padding: EdgeInsets.fromLTRB(20, 5, 25, 5),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.end,
- crossAxisAlignment: CrossAxisAlignment.end,
- children: [
- Text(
- 'Assignment\nLetter\t\t',
- style: GoogleFonts.luckiestGuy(
- fontSize: 28,
- color: Colors.red,
- fontStyle: FontStyle.italic,
- ),
- ),
- Image.asset(
- 'assets/icons/menu/ic_menu_surattugas.png',
- width: 40,
- height: 40,
- ),
- ],
- )),
- SafeArea(
- child: Container(
- width: MediaQuery.of(context).size.width,
- margin: EdgeInsets.only(
- top: MediaQuery.of(context).size.height / 5,
- left: 10,
- right: 10,
- ),
- child: Column(
- children: [
- InkWell(
- child: Container(
- margin: EdgeInsets.fromLTRB(15, 15, 15, 5),
- padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFF2D4059),
- Color(0xFF2D4059),
- /*Color(0xFFEAFFD0),
- Color(0xFF95E1D3),*/
- ])),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Flexible(
- child: Text('Assignment Letter Submission\t\t',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500))),
- Image.asset('assets/images/submit_st.png',
- width: 30,
- height: 30,
- )
- ],
- )),
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) => PengajuanST_Screen()));
- },
- ),
- InkWell(
- child: Container(
- margin: EdgeInsets.fromLTRB(15, 5, 15, 5),
- padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFF2D4059),
- Color(0xFF2D4059),
- /*Color(0xFFEAFFD0),
- Color(0xFF95E1D3),*/
- ])),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Flexible(
- child: Text('Declaration of Assignment Letter\t\t',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500))),
- Image.asset('assets/images/declaration.png',
- width: 30,
- height: 30,
- )
- ],
- )),
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) => DeklarasiST_Screen()));
- },
- ),
- InkWell(
- child: Container(
- margin: EdgeInsets.fromLTRB(15, 5, 15, 5),
- padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFF2D4059),
- Color(0xFF2D4059),
- /*Color(0xFFEAFFD0),
- Color(0xFF95E1D3),*/
- ])),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Flexible(
- child: Text('See Assignment Letter History\t\t',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500))),
- Image.asset('assets/images/ic_history.png',
- width: 30,
- height: 30,
- )
- ],
- )),
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) => HistoryST()));
- },
- ),
- InkWell(
- child: Container(
- margin: EdgeInsets.fromLTRB(15, 5, 15, 5),
- padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFF2D4059),
- Color(0xFF2D4059),
- /*Color(0xFFEAFFD0),
- Color(0xFF95E1D3),*/
- ])),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Flexible(
- child: Text('Additional Advance Payment\t\t',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500))),
- Image.asset('assets/images/extra_money.png',
- width: 30,
- height: 30,
- )
- ],
- )),
- onTap: () {},
- ),
- InkWell(
- child: Container(
- margin: EdgeInsets.fromLTRB(15, 5, 15, 5),
- padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFF2D4059),
- Color(0xFF2D4059),
- /*Color(0xFFEAFFD0),
- Color(0xFF95E1D3),*/
- ])),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Flexible(
- child: Text('Return Date Extension\t\t',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500))),
- Image.asset('assets/images/extend_tanggal.png',
- width: 30,
- height: 30,
- )
- ],
- )),
- onTap: () {}
- ),
- /*Container(
- child: Card(
- elevation: 10,
- child: Container(
- decoration: BoxDecoration(
- color: Color(0XFFFAF7EE),
- borderRadius: BorderRadius.circular(10)),
- child: Column(
- children: [
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Kategori\t:\t',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- )),
- Expanded(
- flex: 7,
- child: Container(
- decoration: BoxDecoration(
- color:
- CupertinoColors.systemGrey2,
- borderRadius:
- BorderRadius.circular(5)),
- child: DropdownButton(
- value: this.selectedCategory,
- isExpanded: true,
- underline: SizedBox(),
- hint: Text(
- '\t\t\tPilih Kategori',
- style: TextStyle(
- color: Colors.black54),
- ),
- onChanged: (value) {
- print(value);
- setState(() {
- selectedCategory = value!;
- });
- },
- items: reimburseCategory
- .map(
- (e) => DropdownMenuItem(
- value: e,
- child:
- Text("\t\t\t" + e)),
- )
- .toList(),
- ),
- )),
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Column(
- children: [
- Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Tanggal\t:\t',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- )),
- Expanded(
- flex: 7,
- child: Container(
- decoration: BoxDecoration(
- color: CupertinoColors
- .systemGrey2,
- borderRadius:
- BorderRadius.circular(
- 5)),
- child: Column(
- children: [
- DropdownButton(
- value: this.selectedDate,
- isExpanded: true,
- underline: SizedBox(),
- hint: Text(
- '\t\t\tPilih Tanggal',
- style: TextStyle(
- color:
- Colors.black54),
- ),
- onChanged: (value) {
- print(value);
- setState(() {
- selectedDate = value!;
- });
- },
- items: reimburseCategory
- .map(
- (e) =>
- DropdownMenuItem(
- value: e,
- child: Text(
- "\t\t\t" +
- e)),
- )
- .toList(),
- ),
- ],
- ),
- )),
- ],
- ),
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Total Harga\t:\t',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- )),
- Expanded(
- flex: 7,
- child: Container(
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius:
- BorderRadius.circular(5)),
- child: Padding(
- padding: EdgeInsets.only(
- left: 10,
- right: 10,
- top: 5,
- bottom: 5),
- child: TextFormField(
- keyboardType:
- TextInputType.number,
- maxLines: 1,
- textInputAction:
- TextInputAction.next,
- decoration: InputDecoration(
- border:
- InputBorder.none,
- hintText:
- "Masukkan tanpa tanda baca (.) atau (,)")),
- ))),
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Deskripsi\t:\t',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- )),
- Expanded(
- flex: 7,
- child: Container(
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius:
- BorderRadius.circular(5)),
- child: Padding(
- padding: EdgeInsets.only(
- left: 10,
- right: 10,
- top: 5,
- bottom: 5),
- child: TextFormField(
- keyboardType:
- TextInputType.multiline,
- maxLines: null,
- textInputAction:
- TextInputAction.done,
- decoration: InputDecoration(
- border:
- InputBorder.none,
- hintText: "Deskripsi")),
- ))),
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Column(
- children: [
- Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Pembayaran\t:',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- )),
- Expanded(
- flex: 7,
- child: Container(
- child: Column(
- children: [
- Row(
- children: [
- Radio(
- value: 1,
- groupValue: _value,
- onChanged: (value) {
- setState(() {
- _value = value!;
- });
- },
- ),
- Flexible(
- child: Text(
- "Karyawan (Perlu Reimburse)",
- style:
- TextStyle(
- color: Colors
- .black54,
- ))),
- ],
- ),
- Row(
- children: [
- Radio(
- value: 2,
- groupValue: _value,
- onChanged: (value) {
- setState(() {
- _value = value!;
- });
- },
- ),
- Flexible(
- child: Text(
- "Perusahaan",
- style: TextStyle(
- color: Colors
- .black54)))
- ],
- ),
- ],
- ),
- )),
- ],
- ),
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(
- left: 10, right: 10, top: 10, bottom: 10),
- child: Column(
- children: [
- Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- 'Lampiran\t:\t',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- ),
- ),
- Expanded(
- flex: 7,
- child: Container(
- child: ElevatedButton(
- onPressed: () {},
- child: Container(
- width: double.infinity,
- child: Text("Pilih File"),
- ),
- ),
- ),
- )
- ],
- ),
- Row(
- children: [
- Expanded(
- flex: 3,
- child: Text(
- '',
- style: GoogleFonts.inconsolata(
- fontSize: 17),
- ),
- ),
- Expanded(
- flex: 7,
- child: Visibility(
- visible: true,
- child: Container(
- alignment:
- Alignment.centerLeft,
- margin: EdgeInsets.only(
- left: 15,
- right: 15,
- bottom: 10),
- child: Flexible(
- child: Text(
- "Selected File",
- style: TextStyle(
- color:
- Colors.black54),
- ),
- ),
- )),
- )
- ],
- ),
- InkWell(
- child: Container(
- padding: EdgeInsets.fromLTRB(
- 10, 10, 10, 10),
- width: double.infinity,
- decoration: BoxDecoration(
- borderRadius:
- BorderRadius.circular(5),
- gradient: LinearGradient(colors: [
- Color(0xFFFF9945),
- Color(0xFFFc6076)
- ])),
- child: Text('Ajukan',
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.white,
- fontSize: 17,
- fontWeight: FontWeight.w500)),
- ),
- onTap: () {},
- )
- ],
- ),
- ),
- ],
- ),
- ),
- ),
- ),*/
- ],
- ),
- ),
- ),
- ],
- ),
- ],
- )),
- );
- }
- }
-
- List<String> reimburseCategory = [
- "Paid Time Off",
- "Sick Time Off",
- "Compensatory Days",
- "Unpaid"
- ];
|