parallax_cards 1.0.2 copy "parallax_cards: ^1.0.2" to clipboard
parallax_cards: ^1.0.2 copied to clipboard

A Flutter package for scrolling parallax effect and custom card overlays

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

import 'horizontal_example.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Parallax Cards Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
        textTheme: GoogleFonts.poppinsTextTheme(),
      ),
      debugShowCheckedModeBanner: false,
      home: const HorizontalExample(),
    );
  }
}
72
likes
160
points
1.22k
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for scrolling parallax effect and custom card overlays

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on parallax_cards