Skip to content

Instantly share code, notes, and snippets.

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