Open RomanSoviak opened 4 years ago
I cannot see letters: g,q, p, y
@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.
@Dn-a thanks for the quick response! I hope you it will be fixed in the nearest future
Hi my text in text field not fully displayed in Flutter WEB
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; }, ), ); }, )