问题标签 [flutter-layout]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
flutter - 如何在 Flutter 中使用 GridView 创建不同大小的单元格?
我想用Flutter创建一个类似的视图,因为我们可以通过 UICollectionViewLayout
在 iOS 中创建一个。
如何GridView
在Flutter中实现这一点。如果没有GridView
,有没有其他方法可以做到这一点?
flutter - How to get current tab index in Flutter
In flutter implementing a tab layout is easy and straightforward. This is a simple example from the official documentation:
But here is the thing, I want to get the active tab index so I can apply some logic on certain tabs. I search the documentation but I wasn't able to figure it out. Can you guys help and thanks?
button - 如何在 Flutter 中为 Button 设置边距
我只是在 Flutter 中创建一个表单。我无法为按钮设置上边距。
flutter - 渲染时嵌套的 ListView.Builder 失败 - Flutter
我正在尝试一个颤振应用程序来构建一个小游戏我有List<List<ColumnData>> gameBoard
一个ColumnData
本地定义的类。该列表应该是三角形格式的二维列表,例如对于级别为 3 的列表将如下所示:
[00]
[10][11]
[20][21][22]
我的模拟代码是:
我得到的错误片段是:
我尝试过不使用收缩包装,也尝试过使用行和列,但没有成功
我到底做错了什么?我可以探索的任何其他变化?构建二维矩阵的任何其他解决方法/想法
欢迎任何指点
问候
animation - 容器高度动画从中间开始
FlutterContainer
高度动画从中间开始,但我需要它从底部开始这是我的代码
我正在尝试在 Flutter 中实现这种带有高度增长动画的 UI 我希望动画从底部开始,但它从容器的中心开始并在两侧进行动画处理。
flutter - 如何在 Flutter 中加密 SQLite 数据库?
我正在通过以下代码在 Flutter 中创建数据库,有什么方法可以加密数据库吗?
Flutter 有可用的库吗?