jclink

Results 3 comments of jclink

Not sure if this will help, but certain attributes may require the addition of '\n'. For example, I use the 'heading' attribute like this: `Operation.insert('text');` `Operation.insert('\n', {"heading": 1});` I ran...

The solution I arrived at was to use Container box constraints and move the ZefyrScaffold up the tree: ``` Scaffold( body: Container( constraints: BoxConstraints.expand(), child: ZefyrScaffold( child: SingleChildScrollView( /* my...

I ran into this problem, and for me, it appeared that the keyboard hiding event was absorbing the back button and I was unable to hide the Zefyr toolbar. I...