Skip to content

Instantly share code, notes, and snippets.

@datafoya
Last active June 17, 2019 20:50
Show Gist options
  • Save datafoya/7e65d47f2c5cc90873f8a3048776d9ec to your computer and use it in GitHub Desktop.
Save datafoya/7e65d47f2c5cc90873f8a3048776d9ec to your computer and use it in GitHub Desktop.
widget sizing 1
Try setting the Container's width to 100.
import 'package:flutter_web/material.dart';
import 'package:flutter_web_test/flutter_web_test.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Row(
children: [
Container(
width: 1000,
height: 50,
decoration: BoxDecoration(
color: Colors.blue,
border: Border.all(),
),
),
],
);
}
}
import 'package:flutter_web/material.dart';
import 'package:flutter_web_test/flutter_web_test.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Row(
children: [
Container(
width: 100,
height: 50,
decoration: BoxDecoration(
color: Colors.blue,
border: Border.all(),
),
),
],
);
}
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Directionality(
textDirection: TextDirection.ltr,
child: Container(
color: Color(0xffeeeeee),
child: Center(
child: Container(
child: MyWidget(),
color: Color(0xffcccccc),
),
),
),
);
}
}
Future<void> main() async {
await ui.webOnlyInitializePlatform();
runApp(MyApp());
final controller = LiveWidgetController(WidgetsBinding.instance);
final rows = controller.widgetList(find.byType(Row));
if (rows.length == 0) {
_result(false, ['Couldn\'t find a Row!']);
return;
}
if (rows.length > 1) {
_result(false, ['Found ${rows.length} Rows, rather than just one.']);
return;
}
final row = rows.first as Row;
if (row.mainAxisSize != MainAxisSize.max) {
_result(false, ['It\'s best to leave the mainAxisSize set to MainAxisSize.max, so there\'s space for the alignments to take effect.']);
return;
}
if (row.children.length != 1 || row.children[0] is! Container) {
_result(false, ['The Row should have one child, a Container.']);
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment