This commit is contained in:
venba-Inspriron-3558 2025-06-30 09:26:38 +05:30
parent e15666e3b8
commit 12d11ed0d8
3 changed files with 59 additions and 7 deletions

View File

@ -493,8 +493,35 @@ class GroupDataState extends State<GroupData> {
items: DomesticMap.values.toList(),
dropdownDecoratorProps: DropDownDecoratorProps(
dropdownSearchDecoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.symmetric(horizontal: 1),
// border: InputBorder.none,
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:
@ -607,9 +634,34 @@ class GroupDataState extends State<GroupData> {
items: InternationalMap.values.toList(),
dropdownDecoratorProps: DropDownDecoratorProps(
dropdownSearchDecoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.symmetric(horizontal: 1),
// border: InputBorder.none,
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: 10.0,
vertical: 8.0,),
// contentPadding: EdgeInsets.symmetric(horizontal: 1),
),
),
dropdownBuilder:

View File

@ -3721,7 +3721,7 @@ class CreateNewPlansState extends State<CreateNewPlan> {
Widget _buildTripName(bool isDesktop) {
return SizedBox(
width: isDesktop ? MediaQuery.of(context).size.width * 0.2 : 180,
width: isDesktop ? MediaQuery.of(context).size.width * 0.7443333 : 180,
height: 35,
child: TextField(
// focusNode: _tripTitleFocusNode,

View File

@ -1295,7 +1295,7 @@ class _UserListScreenState extends State<UserListScreen> {
final usersData = await apiService.getSingleUser(userId);
context.go("/CreateUserDetails", extra: {
"selectedUser": usersData,
"isViewMode": true,
"isViewMode": false,
});
},
),