reflection_effect 1.0.0 copy "reflection_effect: ^1.0.0" to clipboard
reflection_effect: ^1.0.0 copied to clipboard

outdated

A Flutter widget that reflects the content of a widget.

example/lib/main.dart

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

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Example Reflection Widget',
      home: Scaffold(
        body: Center(
          child: Reflection(
            negativeSpace: 20,
            child: Text('Hello World',
                style: TextStyle(fontSize: 30, color: Colors.blue)),
          ),
        ),
      ),
    );
  }
}
2
likes
0
points
39
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter widget that reflects the content of a widget.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on reflection_effect