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

A beautiful, modern showcase coach overlay for Flutter with smooth animations, glassmorphism effects, and step-by-step guided tours.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:save_points_showcaseview_example/example_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    final baseScheme = ColorScheme.fromSeed(seedColor: Colors.indigo);

    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Save Points Explainer',
      theme: ThemeData(
        colorScheme: baseScheme.copyWith(
          surface: const Color(0xFFF8F7FF),
          surfaceContainerHighest: const Color(0xFFEAE8FF),
        ),
        useMaterial3: true,
        textTheme: Typography.blackMountainView.copyWith(
          titleLarge: const TextStyle(
            fontWeight: FontWeight.w800,
            letterSpacing: -0.3,
          ),
          titleMedium: const TextStyle(
            fontWeight: FontWeight.w700,
            letterSpacing: -0.2,
          ),
          bodyLarge: const TextStyle(
            height: 1.5,
            letterSpacing: 0,
          ),
          bodyMedium: const TextStyle(
            height: 1.5,
          ),
        ),
      ),
      home: const ExampleCoachPage(),
    );
  }
}
2
likes
160
points
163
downloads

Publisher

unverified uploader

Weekly Downloads

A beautiful, modern showcase coach overlay for Flutter with smooth animations, glassmorphism effects, and step-by-step guided tours.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on save_points_showcaseview