mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Similar to widgets.dart, rendering.dart exports the entire rendering layer. Also, update the examples to use rendering.dart and widgets.dart. Also clean up some exports so that the examples have more sensible imports.
42 lines
1.4 KiB
Dart
42 lines
1.4 KiB
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:sky';
|
|
|
|
import 'package:sky/rendering.dart';
|
|
|
|
import 'solid_color_box.dart';
|
|
|
|
void main() {
|
|
RenderFlex flexRoot = new RenderFlex(direction: FlexDirection.vertical);
|
|
|
|
RenderObject root = new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(backgroundColor: const Color(0xFF606060)),
|
|
child: flexRoot
|
|
);
|
|
|
|
RenderObject child = new RenderSolidColorBox(const Color(0xFFFFFF00));
|
|
flexRoot.add(child);
|
|
child.parentData.flex = 2;
|
|
|
|
// The internet is a beautiful place. https://baconipsum.com/
|
|
String meatyString = """Bacon ipsum dolor amet ham fatback tri-tip, prosciutto
|
|
porchetta bacon kevin meatball meatloaf pig beef ribs chicken. Brisket ribeye
|
|
andouille leberkas capicola meatloaf. Chicken pig ball tip pork picanha bresaola
|
|
alcatra. Pork pork belly alcatra, flank chuck drumstick biltong doner jowl.
|
|
Pancetta meatball tongue tenderloin rump tail jowl boudin.""";
|
|
|
|
var text = new StyledTextSpan(
|
|
new TextStyle(color: const Color(0xFF009900)),
|
|
[new PlainTextSpan(meatyString)]);
|
|
child = new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(backgroundColor: const Color(0xFFFFFFFF)),
|
|
child: new RenderParagraph(text)
|
|
);
|
|
flexRoot.add(child);
|
|
child.parentData.flex = 1;
|
|
|
|
new SkyBinding(root: root);
|
|
}
|