How to do `text-transform: uppercase` in Flutter TextStyles?
Short answer, you can't. See this ticket. So the workaround is to use toUpperCase()
:
Scaffold(
appBar: AppBar(
title: Text('Game plan review'.toUpperCase()),
),
body: ...
)
Short answer, you can't. See this ticket. So the workaround is to use toUpperCase()
:
Scaffold(
appBar: AppBar(
title: Text('Game plan review'.toUpperCase()),
),
body: ...
)