Skip to content

Instantly share code, notes, and snippets.

@Chralu
Last active September 19, 2022 16:03
Show Gist options
  • Save Chralu/505ef40582f263ce9129d5417fa7ea87 to your computer and use it in GitHub Desktop.
Save Chralu/505ef40582f263ce9129d5417fa7ea87 to your computer and use it in GitHub Desktop.
Flutter101 - Layout row

Flutter101 - Layout row

Created with <3 with dartpad.dev.

import 'package:flutter/material.dart';
class RowDemo extends StatelessWidget {
const RowDemo({super.key});
@override
Widget build(BuildContext context) {
return Row(
textDirection: TextDirection.ltr,
mainAxisAlignment: MainAxisAlignment.center, // Positionnement horizontal
crossAxisAlignment: CrossAxisAlignment.center, // Positionnement vertical
children: [
Container(
color: Colors.red,
width: 100,
height: 100,
),
Container(
color: Colors.green,
width: 100,
height: 100,
),
Container(
color: Colors.blue,
width: 100,
height: 100,
),
],
);
}
}
void main() {
runApp(
const RowDemo(),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment