Morn
Morn
use `TableConfig` with `wrapBuilder` to wrap `Table` into a `SingleChildScrollView` can resolve your first problem
use `TableConfig` with `headerStyle` can resolve your second problem
the third problem has not yet a better solution
Flutter supports the configuration of international languages: https://flutter.dev/docs/development/accessibility-and-localization/internationalization I don't konw much about Right to Left Languages😂, could you provide some samples?
Hi, you can use `TextConfig` to set `textDirection` or use `flutter_localizations` ``` flutter_localizations: sdk: flutter ``` that will support RTL languages
> > I don't konw much about Right to Left Languages😂, could you provide some samples? > > take a look at this [repo](https://github.com/AdnanAlshami/markdown_test) > > I added some images...
could you show the code?
Hi, you can use `StyleConfig().checkBoxBuilder` to custom your own checkbox
> @asjqkkkk hi, I mean checkbox can click, and direcly add a `-` in `- [ ]` so that it will automatically support : > > from > > *...
> @asjqkkkk I notice that many APP support this feature by default, such as iOS Notes, anyother app can do this. Do u think it possible by simply speciffy a...