Yahoo Search Búsqueda en la Web

Resultado de búsqueda

  1. Learn how to use slivers to create custom scrolling effects, such as elastic scrolling, in Flutter. Find resources, videos, and API docs on slivers, SliverAppBar, SliverGrid, and SliverList.

    • SliverAppBar

      Sliver app bars are typically used as the first child of a...

    • Sliver Tools

      A set of useful sliver tools that are missing from the...

  2. Sliver app bars are typically used as the first child of a CustomScrollView, which lets the app bar integrate with the scroll view so that it can vary in height according to the scroll offset or float above the other content in the scroll view.

  3. 28 de jul. de 2022 · Slivers are special purpose widgets that can be coupled with a CustomScrollView to produce a fancy scrolling experience. A SliverToBoxAdapter is a straightforward sliver that builds a link to a common box-based widget.

  4. 17 de jul. de 2023 · A set of useful sliver tools that are missing from the flutter framework. Here is a taste what you can make using this package. The structure of this app: @override. Widget build(BuildContext context) {. return MultiSliver(.

  5. 6 de mar. de 2024 · Learn how to use the SliverList widget to create a scrollable list with fancy effects in Flutter. See a complete example of a sliver list and two sliver app bars that disappear and reappear as you scroll.

  6. A CustomScrollView lets you supply slivers directly to create various scrolling effects, such as lists, grids, and expanding headers. For example, to create a scroll view that contains an expanding app bar followed by a list and a grid, use a list of three slivers: SliverAppBar, SliverList, and SliverGrid.

  7. 22 de jul. de 2021 · Learn how to use SliverAppBar, a widget that allows you to create the floating app bar effect in Flutter. See examples of customizing the floating behavior, adding AppBar inside SliverAppBar, and listening to SliverAppBar's status.