fancy_text_reveal 1.0.1 copy "fancy_text_reveal: ^1.0.1" to clipboard
fancy_text_reveal: ^1.0.1 copied to clipboard

Have you ever wondered if there is any fancy way to reveal your text widgets? Introducing fancy_text_reveal.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: FancyTextRevealExample(),
    );
  }
}

class FancyTextRevealExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.black,
      body: Center(
        child: FancyTextReveal(
          child: Text(
            "Hi there I'm using fancy_text_reveal",
            style: TextStyle(
              color: Colors.white,
            ),
          ),
        ),
      ),
    );
  }
}
20
likes
110
pub points
77%
popularity

Publisher

verified publishersanjeevmadhav.com

Have you ever wondered if there is any fancy way to reveal your text widgets? Introducing fancy_text_reveal.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, lint

More

Packages that depend on fancy_text_reveal