feat : sale out of Province
This commit is contained in:
@@ -20,7 +20,6 @@ class DraggableBottomSheet2 extends GetView<DraggableBottomSheetController> {
|
||||
return ObxValue((data) {
|
||||
return Stack(
|
||||
children: [
|
||||
// پسزمینه تیره
|
||||
Positioned.fill(
|
||||
child: GestureDetector(
|
||||
onTap: () {},
|
||||
|
||||
@@ -26,6 +26,7 @@ class RTextField extends StatefulWidget {
|
||||
final RTextFieldVariant variant;
|
||||
final bool filled;
|
||||
final Color? filledColor;
|
||||
final Color? borderColor;
|
||||
final bool showCounter;
|
||||
final bool isDense;
|
||||
final TextInputType? keyboardType;
|
||||
@@ -67,6 +68,7 @@ class RTextField extends StatefulWidget {
|
||||
this.validator,
|
||||
this.onChanged,
|
||||
this.onSubmitted,
|
||||
this.borderColor,
|
||||
});
|
||||
|
||||
|
||||
@@ -82,7 +84,7 @@ class RTextField extends StatefulWidget {
|
||||
_noBorder || _passwordNoBorder ? InputBorder.none : OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
borderSide: BorderSide(
|
||||
color: AppColor.lightGreyDarkActive,
|
||||
color: borderColor ?? AppColor.lightGreyDarkActive,
|
||||
width: 1,
|
||||
),
|
||||
);
|
||||
|
||||
@@ -134,6 +134,7 @@ class _OverlayDropdownState<T> extends State<OverlayDropdownWidget<T>> {
|
||||
_isOpen.value
|
||||
? CupertinoIcons.chevron_up
|
||||
: CupertinoIcons.chevron_down,
|
||||
size: 14,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user