again
This commit is contained in:
12
.env
12
.env
@ -2,12 +2,12 @@
|
||||
# api_url = 'https://panti-asuhan.s-keytech.com/api/'
|
||||
# # url = 'http://172.29.85.181/panti_asuhan2/'
|
||||
# # api_url = 'http://172.29.85.181/panti_asuhan2/api/'
|
||||
# url = 'http://20.20.20.25:3001/'
|
||||
# table_url = 'http://20.20.20.25:3001/table'
|
||||
# api_url = 'http://20.20.20.25:3001/table'
|
||||
url = 'http://20.20.20.25:3001/'
|
||||
table_url = 'http://20.20.20.25:3001/table'
|
||||
api_url = 'http://20.20.20.25:3001/table'
|
||||
# url = 'http://192.168.20.232:3001/'
|
||||
# table_url = 'http://192.168.20.232:3001/table'
|
||||
# api_url = 'http://192.168.20.232:3001/table'
|
||||
url = 'https://reza_backend.kicap-karan.com/'
|
||||
table_url = 'https://reza_backend.kicap-karan.com/table'
|
||||
api_url = 'https://reza_backend.kicap-karan.com/table'
|
||||
# url = 'https://reza_backend.kicap-karan.com/'
|
||||
# table_url = 'https://reza_backend.kicap-karan.com/table'
|
||||
# api_url = 'https://reza_backend.kicap-karan.com/table'
|
||||
@ -467,6 +467,8 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
DEVELOPMENT_TEAM = F4SG2JTPHZ;
|
||||
ENABLE_BITCODE = NO;
|
||||
@ -477,6 +479,7 @@
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.rezaApp;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
@ -646,8 +649,10 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
DEVELOPMENT_TEAM = F4SG2JTPHZ;
|
||||
DEVELOPMENT_TEAM = "";
|
||||
ENABLE_BITCODE = NO;
|
||||
INFOPLIST_FILE = Runner/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
@ -656,6 +661,7 @@
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.rezaApp;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 5.0;
|
||||
@ -669,6 +675,8 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
DEVELOPMENT_TEAM = F4SG2JTPHZ;
|
||||
ENABLE_BITCODE = NO;
|
||||
@ -679,6 +687,7 @@
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.rezaApp;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
|
||||
@ -53,9 +53,9 @@ class LoginUserView extends StatelessWidget {
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
MyTextFormField(
|
||||
maxLength: 13,
|
||||
hintText: 'No. HP',
|
||||
keyboardType: TextInputType.phone,
|
||||
// maxLength: 13,
|
||||
hintText: 'Username',
|
||||
// keyboardType: TextInputType.phone,
|
||||
controller: model.noHpController,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
|
||||
@ -174,54 +174,57 @@ class DetailMakananView extends HookWidget {
|
||||
),
|
||||
],
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
"Total Harga",
|
||||
style: regularTextStyle.copyWith(
|
||||
fontSize: 14,
|
||||
color: fontGrey,
|
||||
child: SingleChildScrollView(
|
||||
scrollDirection: Axis.horizontal,
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
"Total Harga",
|
||||
style: regularTextStyle.copyWith(
|
||||
fontSize: 14,
|
||||
color: fontGrey,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Text(
|
||||
model.isBusy
|
||||
? 'Loading...'
|
||||
: 'Rp. ${int.parse(makananModel.hargaMakanan!) + 10000}',
|
||||
style: boldTextStyle.copyWith(
|
||||
fontSize: 16,
|
||||
color: dangerColor,
|
||||
const SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
height: 40,
|
||||
decoration: BoxDecoration(
|
||||
color: dangerColor,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
Text(
|
||||
model.isBusy
|
||||
? 'Loading...'
|
||||
: 'Rp. ${int.parse(makananModel.hargaMakanan!) + 10000}',
|
||||
style: boldTextStyle.copyWith(
|
||||
fontSize: 16,
|
||||
color: dangerColor,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
child: Center(
|
||||
child: Text(
|
||||
"Pesan Sekarang",
|
||||
style: boldTextStyle.copyWith(
|
||||
fontSize: 16,
|
||||
color: Colors.white,
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
height: 40,
|
||||
decoration: BoxDecoration(
|
||||
color: dangerColor,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
child: Center(
|
||||
child: Text(
|
||||
"Pesan Sekarang",
|
||||
style: boldTextStyle.copyWith(
|
||||
fontSize: 16,
|
||||
color: Colors.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user