web-dev-qa-db-ja.com

flutter-フレキシブルスペースでコンテンツが重複するアプリバーのスクロール

フラッターを使用して、フレキシブルスペースでコンテンツが重複するアプリバーのスクロールを再作成しようとしています。

動作は次のとおりです。

http://karthikraj.net/2016/12/24/scrolling-behavior-for-appbars-in-Android/

ここに貼り付けたコードを使用して、SliverAppBarを使用して折りたたみAppBarを既に作成しました。作成しようとしています [〜#〜] this [〜#〜]

onScrollコールバックが見つからないため、Stackを使用できません。これまでのところ、flexibleSpaceを使用してappbarを作成しました。アプリバーがスクロールすると折りたたまれます。

Scaffold(
    body: NestedScrollView(
      headerSliverBuilder:
          (BuildContext context, bool innerBoxIsScrolled) => <Widget>[
                SliverAppBar(
                  forceElevated: innerBoxIsScrolled,
                  pinned: true,
                  expandedHeight: 180.0,
                ),
              ],
      body: ListView.builder(
        itemCount: 30,
        itemBuilder: (context, index) => Text(
              "Item $index",
              style: Theme.of(context).textTheme.display1,
            ),
      ),
    ),
  );

What i created so far

編集: 作成したいものの例

6
CodePLeX

ScrollViewは、スクロールオフセットの更新を通知するListenableであるScrollControllerを取ります。

ScrollControllerをリッスンし、スタックを使用して、スクロールオフセットに基づいて目的の効果を実現できます。

ここに簡単な例があります:

import 'package:flutter/material.Dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Scroll demo',
      home: new Scaffold(
        appBar: new AppBar(elevation: 0.0),
        body: new CustomScroll(),
      ),
    );
  }
}

class CustomScroll extends StatefulWidget {
  @override
  State createState() => new CustomScrollState();
}

class CustomScrollState extends State<CustomScroll> {
  ScrollController scrollController;
  double offset = 0.0;
  static const double kEffectHeight = 100.0;

  @override
  Widget build(BuildContext context) {
    return new Stack(
      alignment: AlignmentDirectional.topCenter,
      children: <Widget> [
        new Container(
          color: Colors.blue,
          height: (kEffectHeight - offset * 0.5).clamp(0.0, kEffectHeight),
        ),
        new Positioned(
          child: new Container(
            width: 200.0,
            child: new ListView.builder(
              itemCount: 100,
              itemBuilder: buildListItem,
              controller: scrollController,
            ),
          ),
        ),
      ],
    );
  }

  Widget buildListItem(BuildContext context, int index) {
    return new Container(
      color: Colors.white,
      child: new Text('Item $index')
    );
  }

  void updateOffset() {
    setState(() {
      offset = scrollController.offset;
    }); 
  }

  @override
  void initState() {
    super.initState();
    scrollController = new ScrollController();
    scrollController.addListener(updateOffset);
  }

  @override
  void dispose() {
    super.dispose();
    scrollController.removeListener(updateOffset);
  }
}
1
amir
0
Steve

SliverAppbarウィジェットはあなたが探しているものだと思います。

目標を達成する方法を示すこの記事をご覧ください。

https://flutterdoc.com/animating-app-bars-in-flutter-cf034cd6c68b

0
Mans