flutter_pull_up_down_refresh 1.0.3 copy "flutter_pull_up_down_refresh: ^1.0.3" to clipboard
flutter_pull_up_down_refresh: ^1.0.3 copied to clipboard

flutter_pull_up_down_refresh lib allow to pull-up or pull-down in ScrollView, just listen callback both events.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'flutter_pull_up_down_refresh_example.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text(
            "Example flutter Pull & down Refresh",
            style: TextStyle(
              fontSize: 14,
              fontWeight: FontWeight.bold,
            ),
          ),
        ),
        body: const FlutterPullUpDownRefreshExample(),
      ),
    );
  }
}
1
likes
150
points
52
downloads

Publisher

verified publisherdarith.info

Weekly Downloads

flutter_pull_up_down_refresh lib allow to pull-up or pull-down in ScrollView, just listen callback both events.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_pull_up_down_refresh