Skip to content

Instantly share code, notes, and snippets.

@xpwmaosldk
xpwmaosldk / pagination.dart
Last active July 14, 2021 06:35
https://github.com/xpwmaosldk/number_pagination 에서 관리합니다. 아래 로직엔 문제가 있습니다.(공부 할 겸 풀어보시는 것도 좋아요)
//deprecated
import 'package:flutter/material.dart';
class Pagination extends StatefulWidget {
final Function(int) listner;
final int totalPage;
final int currentPage;
final int size;
Pagination({this.listner, this.totalPage, this.currentPage, this.size = 10});