Dn-a / flutter_tags

With flutter tags you can create selectable or input tags that automatically adapt to the screen width
https://pub.dartlang.org/packages/flutter_tags
MIT License
508 stars 124 forks source link

text field start #40

Closed MihaelaTIMIS closed 4 years ago

MihaelaTIMIS commented 4 years ago

Is it possible to have the text field before tags ? I saw in demo that feature, but i can't find id in properties. Thanx

Dn-a commented 4 years ago

@MihaelaTIMIS of course, just use these parameters

Tags(
     verticalDirection: VerticalDirection.up ,
      textDirection: TextDirection.rtl ,
      .
      .
);
MihaelaTIMIS commented 4 years ago

And it worked! Thanks a lot 👍