Merge branch 'main' of bitbucket.org:venbainformationtechnology/ts-tat

This commit is contained in:
venbaittech 2025-06-11 12:17:25 +05:30
commit 66b62c7ad4
2 changed files with 12 additions and 3 deletions

View File

@ -1295,7 +1295,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 =
@ -1655,7 +1660,11 @@ class CreateNewPlansState extends State<CreateNewPlan> {
// ],
// )
},
);
)
// replace with your full form column
);
}
// String? getSelectedCostCenterName() {

View File

@ -702,4 +702,4 @@ Widget buildNavItem(
),
),
);
}
}