jbt-cii
jbt-cii
Hello, I think I experienced the same problem. Maybe the answer given in this issue "https://github.com/BilalShahid13/PersistentBottomNavBar/issues/179" may help you.
There is also this issue which talks about the context used: https://github.com/BilalShahid13/PersistentBottomNavBar/issues/103
I found a solution! Not at the level of the "PersistentBottomNavBarItem" but at the level of the "PersistentTabView" declaration. I added an action in the "selectedTabScreenContext" part: ```dart @override Widget...
I still keep this issue open to see if someone can explain me this: What is the default behavior "PersistentBottomNavBarItem" to try to reproduce it in the "onPressed" part?
For information I tried to set minLines > 1 and also maxLines > 1 :-) I tried also to define maxLines to null. I tried also this solution: ```dart maxLines:...
OK I see where is the problem. I use a "decoration". Without this "decoration" I get the multiline aspect. My code: ```dart decoration: InputDecoration( contentPadding: EdgeInsets.all(this._padding!), focusColor: Theme.of(context).accentColor, hoverColor: Theme.of(context).accentColor,...
Also event without the "decoration" I can't get more than 2 lines even with this code: ```dart ... keyboardType: TextInputType.multiline, minLines: 5, maxLines: 10, ... ```
OK I found the reason I couldn't get more than 2 lines without the "decoration" declaration. I had a static height defined before in the "Container" containing the "ReactiveTextField". So...
OK I found myself a solution :-) I think the problem came from the "height" I told before. I still have a problem: When I write some text inside, keyboard...