gpt4 book ai didi

flutter - 具有水平、未填充子项的 PageView

转载 作者:IT老高 更新时间:2023-10-28 12:34:20 26 4
gpt4 key购买 nike

似乎 PageView 将始终根据滚动的轴进行填充。在 PageView 中满足“偷看”的最佳方法是什么?

我尝试使用标准 SliverChildListDelegate 实现 PageView.custom 但我猜这不允许任意/自定义大小。我打算开始做一些自定义的事情,但决定在这里问是一个好的开始。

请参阅下图,了解我正在努力实现的目标。

enter image description here

最佳答案

此功能是 added in 3 Mar 2017 .之后 @EricSeidel's request .

这可以通过controller 来实现PageView 的属性(property).

controller: PageController(
initialPage: 1,
viewportFraction: 0.8,
),

PageController.viewportFraction查看上一个和下一个。 PageController.initialPage应用启动时显示中间页。

import 'package:flutter/material.dart';

void main() => runApp(LimeApp());

class LimeApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Lime',
home: MainPage(),
);
}
}

class MainPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
margin: EdgeInsets.symmetric(
vertical: 50.0,
),
child: PageView(
controller: PageController(
initialPage: 1,
viewportFraction: 0.8,
),
children: [
Container(margin: EdgeInsets.symmetric(horizontal: 10.0,), color: Colors.redAccent),
Container(margin: EdgeInsets.symmetric(horizontal: 10.0,), color: Colors.purpleAccent),
Container(margin: EdgeInsets.symmetric(horizontal: 10.0,), color: Colors.greenAccent)
],
),
),
);
}
}

我想不出更好的方法来在页面之间添加边距以及如何避免最后一页和起始页之后的空间。

enter image description here

关于flutter - 具有水平、未填充子项的 PageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42422621/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com