getx_snippets_extension
getx_snippets_extension copied to clipboard
Wrap with Obx removes variables from string interpolation
When I wrap the following widget with Obx, it modifies the code
FocusTraversalOrder(
order: LexicalFocusOrder('$colIdx'),
child: Container(),
)
becomes
Obx(() => FocusTraversalOrder(
order: LexicalFocusOrder(''),
child: Container(),
)),