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 {
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://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/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;

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

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

@ -59,12 +59,13 @@ class _SelectionBottomSheetState<T> extends State<SelectionFullScreenDialog<T>>
alignment: Alignment.center,
child: Row(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const Icon(Icons.clear, color: Colors.white, size: 16),
4.width,
const Text(
"Clear",
style: TextStyle(fontSize: 14, color: Colors.white),
style: TextStyle(fontSize: 14, color: Colors.white, height: 1),
)
],
).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.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.3.0+17
version: 1.3.1+20
environment:
sdk: ">=3.5.0 <4.0.0"

Loading…
Cancel
Save