web/example/embed.html [142:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('6'),
Icon(Icons.thumb_up),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('2'),
Icon(Icons.thumb_down),
],
),
Image.network('http://placekitten.com/100/120', height: 120),
],
),
);
}
}`,
`import 'package:flutter_web/material.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
class FruitCard extends StatelessWidget {
const FruitCard({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
web/example/embed.html [187:214]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('6'),
Icon(Icons.thumb_up),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('2'),
Icon(Icons.thumb_down),
],
),
Image.network('http://placekitten.com/100/120', height: 120),
],
),
);
}
}`,
`import 'package:flutter_web/material.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
class FruitCard extends StatelessWidget {
const FruitCard({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -