FLUTTER ECOSYSTEM

WinXaito/scroll_pos

Fornece algumas funções adicionais ao ScrollController para definir a posição do item em relação à tela.

Capa do projeto scroll_pos
Stars
11
Forks
0
Último push (UTC)
28 de mai. de 2024
Status do projeto
Ativo
Kevin Vuilleumier GitHub avatar
GITHUB User

Kevin Vuilleumier ↗

SwitzerlandSite oficial ↗
LinguagensC++DartCMakeHTMLCCSS

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 3 itens
  • flutter{"sdk":"flutter"}
  • flutter_testDesenvolvimento{"sdk":"flutter"}
  • flutter_lintsDesenvolvimento^1.0.0

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

Scroll Position

Provides some additional functions to ScrollController to define item position relative to the screen.

A live version is available here.

scrollpos_demo

Note: this works on condition that all items have the same height !

Usage

// Create a ScrollPosController (don't forget to set and update itemCount !)
final controller = ScrollPosController(itemCount: itemCount);

// Assign the controller to a scrollable item (like an ListView)
ListView(
  controller: controller,
  children: [
    ...
  ];
);

// Control the controller
TextButton(
  child: Text('To item'),
  onPressed: () {
    setState(() {
      controller.scrollToItem(index);
    });
  },
);

Main methods

  • void scrollTop({bool? animate}) : Go to the first item
  • void scrollBottom({bool? animate}) : Go to the last item
  • void scrollToItem(int index, {bool? animate, bool center = false}) : Makes the item visible on the screen