# row

<https://github.com/kyorohiro/hello_skyengine/tree/master/widget_row>

![](https://1814295318-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M23mFK0BQXfvUtsV5Gz%2F-M23mHdwSyo8rV1dBqZS%2F-M23mPJP0F5erQknAbJO%2Fscreen.png?generation=1583849519506070\&alt=media)

```
// following code is checked in 2016/01/13
//
import 'package:flutter/widgets.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

main() async {
  double width = 100.0;
  double height = 100.0;
  Container c = new Container(
      child: new Text("Container"),
      decoration: new BoxDecoration(
          backgroundColor: new Color.fromARGB(0xaa, 0xff, 0xaa, 0xaa)),
      width: width,
      height: height);
  Text t = new Text("Text");
  //
  // 2015 12/03 icon.jpeg is error.
  //  AssetImage i = new AssetImage(name:"assets/icon.jpeg",bundle:rootBundle);
  //
  //
  AssetImage i = new AssetImage(name:"assets/a.png",bundle:rootBundle);
  //NetworkImage i = new NetworkImage(src: "./icon.jpeg");
  FlexJustifyContent justifyContent = FlexJustifyContent.spaceBetween;
  FlexAlignItems alignItems = FlexAlignItems.center;
  TextBaseline textBaseline = TextBaseline.ideographic;
  runApp(new Row([c, t, i],
      justifyContent: justifyContent,
      alignItems: alignItems,
      textBaseline: textBaseline));
}
```

```
#flutter.yaml
assets:
 - assets/icon.jpeg
 - assets/a.png
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://flutter2015.firefirestyle.net/widgets/doc-5.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
