Skip to content

Instantly share code, notes, and snippets.

@PiN73
Last active August 1, 2020 23:55
Show Gist options
  • Save PiN73/b2587efe75b1b5de9a3ba1c10ca4064c to your computer and use it in GitHub Desktop.
Save PiN73/b2587efe75b1b5de9a3ba1c10ca4064c to your computer and use it in GitHub Desktop.
Column with Icon baseline fixed
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,
verticalDirection: VerticalDirection.up, // <-- reverse direction
children: [
Text('17:59', style: TextStyle(fontSize: 32)), // <-- first child
Icon(Icons.timer),
],
),
Text('mm:ss'),
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment