latest commit 06-06-2025

This commit is contained in:
vadivelJ96 2025-06-06 12:04:50 +05:30
parent ef79391915
commit f663fd776f
2 changed files with 283 additions and 269 deletions

View File

@ -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) {
bool isMobile = sizingInfo.isMobile;
bool isDesktop =
@ -1627,7 +1632,11 @@ class CreateNewPlansState extends State<CreateNewPlan> {
// ],
// )
},
)
// replace with your full form column
);
}
// String? getSelectedCostCenterName() {

View File

@ -284,7 +284,11 @@ class _CustomAppBarState extends State<CustomAppBar> {
@override
Widget build(BuildContext context) {
return AppBar(
return
FocusTraversalGroup(
descendantsAreFocusable: false,
child:
AppBar(
backgroundColor: Colors.white,
surfaceTintColor: Colors.white,
// elevation: 3,
@ -569,6 +573,7 @@ class _CustomAppBarState extends State<CustomAppBar> {
color: layoutColor, // Set the color of the bottom border
),
),
)
);
}