For Material3 typography, when trying to dig into what is the default font style used, I see
this line which simply says that the default is
TextStyle()
which internally does not specify the font size and so on, they are set as
TextUnit.Unspecified
.
How do I know which typography value from the material3 typography is used by default if I simply call
material3.Text("blahblah")
without specifying the text myself?
I know if I am in a contained which internally has set
ProvideTextStyle
it will be that, but what if I am not inside such a contained which has set that composition local?
Couldn’t find anything in the m3 docs either for this.