parallax_cards 1.0.2
parallax_cards: ^1.0.2 copied to clipboard
A Flutter package for scrolling parallax effect and custom card overlays
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(),
);
}
}