Skip to content

Instantly share code, notes, and snippets.

@Parassharmaa
Created June 14, 2020 06:32
Show Gist options
  • Save Parassharmaa/9cb9e501321fd1065d258bf854f3e811 to your computer and use it in GitHub Desktop.
Save Parassharmaa/9cb9e501321fd1065d258bf854f3e811 to your computer and use it in GitHub Desktop.
Center Container Flutter
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
debugShowCheckedModeBanner: true,
home: Scaffold(
body: Center(
child: Container(
constraints: BoxConstraints(minWidth: 100, maxWidth: 600),
child: Column(
children: [
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Text(
"This is Very Long Title, This is Very Long Title, This is Very Long Title"),
),
FittedBox(
child: Text(
"Right Side",
),
),
],
),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Text(
"This is Very Long Title, This is Very Long Title, This is Very Long Title"),
),
FittedBox(
child: Text(
"Right Side",
),
),
],
),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Text(
"This is Very Long Title, This is Very Long Title, This is Very Long Title"),
),
FittedBox(
child: Text(
"Right Side",
),
),
],
)
],
),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment