I thought I understand how these enums work based on this post. When I tried it using the following code, it does not seem to work.
Row( mainAxisAlignment:
Screenshot:
You don't need baseline.
Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.end, children: [ Text( 'abcdefg', style: TextStyle(fontSize: 50.0, fontWeight: FontWeight.w900), ), Text( 'hi', style: TextStyle(fontSize: 15.0), ), ], )