Skip to content

Instantly share code, notes, and snippets.

@PiN73
Last active August 1, 2020 23:33
Show Gist options
  • Save PiN73/3e76233c309afadb7904f1ceb1c77921 to your computer and use it in GitHub Desktop.
Save PiN73/3e76233c309afadb7904f1ceb1c77921 to your computer and use it in GitHub Desktop.
Column baseline
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
Column(
mainAxisSize: MainAxisSize.min,
children: [
Text('Ay', style: TextStyle(fontSize: 32)),
Text('BBByyy', style: TextStyle(fontSize: 32)),
Text('CCyy', style: TextStyle(fontSize: 32)),
],
),
Text('qwertyuiop'),
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment