getx_snippets_extension icon indicating copy to clipboard operation
getx_snippets_extension copied to clipboard

Wrap with Obx removes variables from string interpolation

Open talski opened this issue 2 years ago • 0 comments

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(),
)),

talski avatar Apr 05 '23 18:04 talski