/
Kryuchok
/
flutter
Обзор
Документация
Войти
/
Kryuchok
/
flutter
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/api/lib/widgets/basic/expanded.1.dart
40 строк
1 KB
Michael Goderbauer
Auto-format Framework (#160545)
19 дек 2024, 23:06
Не верифицирован
19 дек 2024, 23:06
5491c8c
Код
Авторство
О чём код?
// Copyright 2014 The Flutter 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 'package:flutter/material.dart'; /// Flutter code sample for [Expanded]. void main() => runApp(const ExpandedApp()); class ExpandedApp extends StatelessWidget { const ExpandedApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('Expanded Row Sample')), body: const ExpandedExample(), ), ); } } class ExpandedExample extends StatelessWidget { const ExpandedExample({super.key}); @override Widget build(BuildContext context) { return Center( child: Row( children: <Widget>[ Expanded(flex: 2, child: Container(color: Colors.amber, height: 100)), Container(color: Colors.blue, height: 100, width: 50), Expanded(child: Container(color: Colors.amber, height: 100)), ], ), ); } }