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 not fully displayed #64

Open RomanSoviak opened 4 years ago

RomanSoviak commented 4 years ago

Hi my text in text field not fully displayed in Flutter WEB

image

Tags( runAlignment: WrapAlignment.start, alignment: WrapAlignment.start, key: _tagStateKey, textField: TagsTextField( textStyle: TextStyle(fontSize: ScreenUtil().setSp(13)), inputDecoration: InputDecoration( focusColor: Colors.orange, labelText: localizations.genreLabel, ), hintText: "", constraintSuggestion: false, onSubmitted: (String genre) { setState(() { _genreTags.add(genre); }); }, ), itemCount: _genreTags.length, itemBuilder: (int index) { final item = _genreTags[index]; return ItemTags( alignment: MainAxisAlignment.start, key: Key(index.toString()), index: index, title: item, active: false, activeColor: Colors.orange, customData: item, combine: ItemTagsCombine.withTextAfter, removeButton: ItemTagsRemoveButton( onRemoved: () { setState(() => _genreTags.removeAt(index)); return true; }, ), ); }, )

RomanSoviak commented 4 years ago

I cannot see letters: g,q, p, y

Dn-a commented 4 years ago

@RomanSoviak thanks for the report. Flutter Tags in the WEB version has not been widely tested as Flutter WEB is still in beta version so it may show some side effects.

RomanSoviak commented 4 years ago

@Dn-a thanks for the quick response! I hope you it will be fixed in the nearest future