latest commit 06-06-2025
This commit is contained in:
parent
ef79391915
commit
f663fd776f
@ -1267,7 +1267,12 @@ class CreateNewPlansState extends State<CreateNewPlan> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
return ResponsiveBuilder(
|
return
|
||||||
|
|
||||||
|
FocusTraversalGroup(
|
||||||
|
policy: OrderedTraversalPolicy(), // 👈 more predictable tab order
|
||||||
|
descendantsAreFocusable: true,
|
||||||
|
child: ResponsiveBuilder(
|
||||||
builder: (context, sizingInfo) {
|
builder: (context, sizingInfo) {
|
||||||
bool isMobile = sizingInfo.isMobile;
|
bool isMobile = sizingInfo.isMobile;
|
||||||
bool isDesktop =
|
bool isDesktop =
|
||||||
@ -1627,7 +1632,11 @@ class CreateNewPlansState extends State<CreateNewPlan> {
|
|||||||
// ],
|
// ],
|
||||||
// )
|
// )
|
||||||
},
|
},
|
||||||
|
)
|
||||||
|
// replace with your full form column
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// String? getSelectedCostCenterName() {
|
// String? getSelectedCostCenterName() {
|
||||||
|
|||||||
@ -284,7 +284,11 @@ class _CustomAppBarState extends State<CustomAppBar> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AppBar(
|
return
|
||||||
|
FocusTraversalGroup(
|
||||||
|
descendantsAreFocusable: false,
|
||||||
|
child:
|
||||||
|
AppBar(
|
||||||
backgroundColor: Colors.white,
|
backgroundColor: Colors.white,
|
||||||
surfaceTintColor: Colors.white,
|
surfaceTintColor: Colors.white,
|
||||||
// elevation: 3,
|
// elevation: 3,
|
||||||
@ -569,6 +573,7 @@ class _CustomAppBarState extends State<CustomAppBar> {
|
|||||||
color: layoutColor, // Set the color of the bottom border
|
color: layoutColor, // Set the color of the bottom border
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user