fixes 1
This commit is contained in:
parent
e15666e3b8
commit
12d11ed0d8
@ -493,8 +493,35 @@ class GroupDataState extends State<GroupData> {
|
|||||||
items: DomesticMap.values.toList(),
|
items: DomesticMap.values.toList(),
|
||||||
dropdownDecoratorProps: DropDownDecoratorProps(
|
dropdownDecoratorProps: DropDownDecoratorProps(
|
||||||
dropdownSearchDecoration: InputDecoration(
|
dropdownSearchDecoration: InputDecoration(
|
||||||
border: InputBorder.none,
|
// border: InputBorder.none,
|
||||||
contentPadding: EdgeInsets.symmetric(horizontal: 1),
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color:
|
||||||
|
(focusStates["country_codeFocused"] ?? false)
|
||||||
|
? widget.layoutColor!
|
||||||
|
: Colors.white,
|
||||||
|
// width: 0.5,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color:
|
||||||
|
(focusStates["country_codeFocused"] ?? false)
|
||||||
|
? widget.layoutColor!
|
||||||
|
: Colors.white,
|
||||||
|
// : const Color(0xFFD6D5E6),
|
||||||
|
// width: 0.5,
|
||||||
|
// const Color(0xFFD6D5E6),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(color: widget.layoutColor!, width: 1),
|
||||||
|
),
|
||||||
|
contentPadding: EdgeInsets.symmetric(
|
||||||
|
horizontal: 8,
|
||||||
|
)
|
||||||
|
// contentPadding: EdgeInsets.symmetric(horizontal: 1),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
dropdownBuilder:
|
dropdownBuilder:
|
||||||
@ -607,9 +634,34 @@ class GroupDataState extends State<GroupData> {
|
|||||||
items: InternationalMap.values.toList(),
|
items: InternationalMap.values.toList(),
|
||||||
dropdownDecoratorProps: DropDownDecoratorProps(
|
dropdownDecoratorProps: DropDownDecoratorProps(
|
||||||
dropdownSearchDecoration: InputDecoration(
|
dropdownSearchDecoration: InputDecoration(
|
||||||
border: InputBorder.none,
|
// border: InputBorder.none,
|
||||||
|
border: OutlineInputBorder(
|
||||||
contentPadding: EdgeInsets.symmetric(horizontal: 1),
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color:
|
||||||
|
(focusStates["country_codeFocused"] ?? false)
|
||||||
|
? widget.layoutColor!
|
||||||
|
: Colors.white,
|
||||||
|
// width: 0.5,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color:
|
||||||
|
(focusStates["country_codeFocused"] ?? false)
|
||||||
|
? widget.layoutColor!
|
||||||
|
: Colors.white,
|
||||||
|
// : const Color(0xFFD6D5E6),
|
||||||
|
// width: 0.5,
|
||||||
|
// const Color(0xFFD6D5E6),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(color: widget.layoutColor!, width: 1),
|
||||||
|
),
|
||||||
|
contentPadding: EdgeInsets.symmetric(horizontal: 10.0,
|
||||||
|
vertical: 8.0,),
|
||||||
|
// contentPadding: EdgeInsets.symmetric(horizontal: 1),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
dropdownBuilder:
|
dropdownBuilder:
|
||||||
|
|||||||
@ -3721,7 +3721,7 @@ class CreateNewPlansState extends State<CreateNewPlan> {
|
|||||||
|
|
||||||
Widget _buildTripName(bool isDesktop) {
|
Widget _buildTripName(bool isDesktop) {
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: isDesktop ? MediaQuery.of(context).size.width * 0.2 : 180,
|
width: isDesktop ? MediaQuery.of(context).size.width * 0.7443333 : 180,
|
||||||
height: 35,
|
height: 35,
|
||||||
child: TextField(
|
child: TextField(
|
||||||
// focusNode: _tripTitleFocusNode,
|
// focusNode: _tripTitleFocusNode,
|
||||||
|
|||||||
@ -1295,7 +1295,7 @@ class _UserListScreenState extends State<UserListScreen> {
|
|||||||
final usersData = await apiService.getSingleUser(userId);
|
final usersData = await apiService.getSingleUser(userId);
|
||||||
context.go("/CreateUserDetails", extra: {
|
context.go("/CreateUserDetails", extra: {
|
||||||
"selectedUser": usersData,
|
"selectedUser": usersData,
|
||||||
"isViewMode": true,
|
"isViewMode": false,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user