I hereby claim:
- I am arifai on github.
- I am ahmadrifai (https://keybase.io/ahmadrifai) on keybase.
- I have a public key ASAf6TwALUvQ42z2r4Fw012lS4_eW6yzpCqx8WHKf_TChQo
To claim this, I am signing this object:
| class Api{ | |
| static Future<dynamic> post(String path, | |
| {dynamic body, Map<String, dynamic>? params}) async { | |
| try { | |
| final resp = await dio.post<Map<String, dynamic>>(path, | |
| data: body, queryParameters: params); | |
| return resp.data; | |
| } catch (e) { | |
| ApiResources.errorHandlerFunc(e); |
| import 'package:flutter/material.dart'; | |
| class AddDataPage extends StatefulWidget { | |
| AddDataPage({Key key}) : super(key: key); | |
| @override | |
| _AddDataPageState createState() => _AddDataPageState(); | |
| } | |
| class _AddDataPageState extends State<AddDataPage> { |
| [package] | |
| name = "sysinfo" | |
| version = "0.1.0" | |
| authors = ["Ahmad Rifa'i <arifai209@gmail.com>"] | |
| edition = "2018" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| # sys-info = "*" |
| [package] | |
| name = "sysinfo" | |
| version = "0.1.0" | |
| authors = ["Ahmad Rifa'i <arifai209@gmail.com>"] | |
| edition = "2018" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| # sys-info = "*" |
| <body> | |
| <div class="container-scroller"> | |
| <?php $this->load->view('partials/_topbar.php') ?> | |
| <div class="container-fluid page-body-wrapper"> | |
| <!-- partial:partials/_sidebar.html --> | |
| <?php $this->load->view('partials/_sidebar.php') ?> | |
| <div class="main-panel"> | |
| <div class="content-wrapper"> | |
| <div class="row"> | |
| <div class="col-md-6 grid-margin stretch-card mx-auto"> |
| _EditAddressFormState(this.accountBloc) { | |
| subs = accountBloc.state.listen((AccountState state) { | |
| if (state is AddressUpdated) { | |
| Navigator.pop(_context, true); | |
| } else if (state is EditAddressFailure) { | |
| Scaffold.of(_context).showSnackBar( | |
| SnackBar( | |
| content: Text(state.error), | |
| backgroundColor: Colors.red, | |
| ), |
| class EditAddressForm extends StatefulWidget { | |
| final AccountBloc accountBloc; | |
| EditAddressForm(this.accountBloc, {Key key}) | |
| : super(key: key); | |
| @override | |
| State<EditAddressForm> createState() => | |
| _EditAddressFormState(accountBloc); | |
| } |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_bloc/flutter_bloc.dart'; | |
| import 'package:pdm_mobile/blocs/account/account_bloc.dart'; | |
| import 'package:pdm_mobile/blocs/account/account_event.dart'; | |
| import 'package:pdm_mobile/blocs/account/account_state.dart'; | |
| import 'package:pdm_mobile/blocs/territory/territory.dart'; | |
| import 'package:pdm_mobile/models/account.dart'; | |
| import 'package:pdm_mobile/util/error_util.dart'; | |
| import 'package:pdm_mobile/widgets/exception/exception_info_view.dart'; |
I hereby claim:
To claim this, I am signing this object:
| import 'package:flutter/material.dart'; | |
| import 'package:misiku/models/transaction_model.dart'; | |
| import 'package:misiku/screen/project_detail/detail_transaction_screen.dart'; | |
| import 'package:misiku/utils/api_client.dart'; | |
| import 'package:rupiah/rupiah.dart'; | |
| class TransactionTabScreen extends StatefulWidget { | |
| final Widget child; | |
| TransactionTabScreen({Key key, this.child}) : super(key: key); |