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

An easy-to-use scaffold for building UI with multiple scrollable pages.

example/lib/main.dart

import 'package:example/page/main/main.dart';
import 'package:flutter/material.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: const MainPage(),
    );
  }
}
9
likes
160
points
25
downloads

Publisher

verified publisherlinloir.cn

Weekly Downloads

An easy-to-use scaffold for building UI with multiple scrollable pages.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on page_swiper