1.3.1+20 uploaded on stores

design_3.0_task_module_new v1.3.1+20
Sikander Saleem 4 months ago
parent 5fd2bb1e5b
commit be2fd8a2d5

@ -1,16 +1,16 @@
class URLs { class URLs {
URLs._(); URLs._();
static const String appReleaseBuildNumber = "16"; static const String appReleaseBuildNumber = "17";
// static const host1 = "https://atomsm.hmg.com"; // production url static const host1 = "https://atomsm.hmg.com"; // production url
// static const host1 = "https://atomsmdev.hmg.com"; // local DEV url // static const host1 = "https://atomsmdev.hmg.com"; // local DEV url
static const host1 = "https://atomsmuat.hmg.com"; // local UAT url // static const host1 = "https://atomsmuat.hmg.com"; // local UAT url
static String _baseUrl = "$_host/mobile"; // static String _baseUrl = "$_host/mobile";
// static final String _baseUrl = "$_host/v2/mobile"; // new V2 apis // static final String _baseUrl = "$_host/v2/mobile"; // new V2 apis
// static final String _baseUrl = "$_host/mobile"; // host local UAT // static final String _baseUrl = "$_host/mobile"; // host local UAT
// static final String _baseUrl = "$_host/v3/mobile"; // v3 for new CM,PM,TM static final String _baseUrl = "$_host/v3/mobile"; // v3 for new CM,PM,TM
static String _host = host1; static String _host = host1;

@ -24,6 +24,7 @@ class AppTextFormField extends StatefulWidget {
final String? initialValue; final String? initialValue;
final TextStyle? style; final TextStyle? style;
final TextStyle? labelStyle; final TextStyle? labelStyle;
final TextStyle? hintStyle;
final bool enable; final bool enable;
final TextAlign? textAlign; final TextAlign? textAlign;
final FocusNode? node; final FocusNode? node;
@ -56,6 +57,7 @@ class AppTextFormField extends StatefulWidget {
this.showPassword, this.showPassword,
this.hintText, this.hintText,
this.labelText, this.labelText,
this.hintStyle,
this.textInputType = TextInputType.text, this.textInputType = TextInputType.text,
this.initialValue, // Provide default value this.initialValue, // Provide default value
this.enable = true, this.enable = true,
@ -210,6 +212,7 @@ class _AppTextFormFieldState extends State<AppTextFormField> {
hintText: widget.hintText ?? "", hintText: widget.hintText ?? "",
labelText: (widget.showSpeechToText && _speechToText.isListening) ? "Listening..." : widget.labelText ?? "", labelText: (widget.showSpeechToText && _speechToText.isListening) ? "Listening..." : widget.labelText ?? "",
labelStyle: widget.labelStyle, labelStyle: widget.labelStyle,
hintStyle: widget.labelStyle,
prefixIcon: widget.prefixIcon ?? prefixIcon: widget.prefixIcon ??
(widget.prefixIconData == null (widget.prefixIconData == null
? null ? null

@ -59,7 +59,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
backgroundColor: AppColor.neutral100, backgroundColor: AppColor.neutral100,
initialValue: widget.uEmail, initialValue: widget.uEmail,
textAlign: TextAlign.center, textAlign: TextAlign.center,
hintText: "email@example.com",
labelStyle: AppTextStyles.textFieldLabelStyle, labelStyle: AppTextStyles.textFieldLabelStyle,
hintStyle: AppTextStyles.textFieldLabelStyle,
textInputType: TextInputType.emailAddress, textInputType: TextInputType.emailAddress,
showShadow: false, showShadow: false,
onChange: (value) { onChange: (value) {
@ -73,7 +75,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
backgroundColor: AppColor.neutral100, backgroundColor: AppColor.neutral100,
initialValue: widget.uPhoneNo, initialValue: widget.uPhoneNo,
textAlign: TextAlign.center, textAlign: TextAlign.center,
hintText: "05xxxxxxxx",
labelStyle: AppTextStyles.textFieldLabelStyle, labelStyle: AppTextStyles.textFieldLabelStyle,
hintStyle: AppTextStyles.textFieldLabelStyle,
textInputType: TextInputType.phone, textInputType: TextInputType.phone,
showShadow: false, showShadow: false,
onChange: (value) { onChange: (value) {
@ -87,7 +91,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
backgroundColor: AppColor.neutral100, backgroundColor: AppColor.neutral100,
initialValue: widget.uExtensionNo, initialValue: widget.uExtensionNo,
textAlign: TextAlign.center, textAlign: TextAlign.center,
hintText: "1234",
labelStyle: AppTextStyles.textFieldLabelStyle, labelStyle: AppTextStyles.textFieldLabelStyle,
hintStyle: AppTextStyles.textFieldLabelStyle,
textInputType: const TextInputType.numberWithOptions(decimal: true), textInputType: const TextInputType.numberWithOptions(decimal: true),
showShadow: false, showShadow: false,
onChange: (value) { onChange: (value) {

@ -59,12 +59,13 @@ class _SelectionBottomSheetState<T> extends State<SelectionFullScreenDialog<T>>
alignment: Alignment.center, alignment: Alignment.center,
child: Row( child: Row(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: [ children: [
const Icon(Icons.clear, color: Colors.white, size: 16), const Icon(Icons.clear, color: Colors.white, size: 16),
4.width, 4.width,
const Text( const Text(
"Clear", "Clear",
style: TextStyle(fontSize: 14, color: Colors.white), style: TextStyle(fontSize: 14, color: Colors.white, height: 1),
) )
], ],
).onPress(_selectedValue != null ).onPress(_selectedValue != null

@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at # Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.3.0+17 version: 1.3.1+20
environment: environment:
sdk: ">=3.5.0 <4.0.0" sdk: ">=3.5.0 <4.0.0"

Loading…
Cancel
Save