kauemurakami / getx_snippets_extension

An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.

Home Page:https://marketplace.visualstudio.com/items?itemName=get-snippets.get-snippets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrap with Obx removes variables from string interpolation

talski opened this issue · 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(),
)),