concealer 0.1.6 copy "concealer: ^0.1.6" to clipboard
concealer: ^0.1.6 copied to clipboard

With this package, you can hide confidential page information from others, such as bank account information

concealer #

With this package, you can hide confidential page information from others, such as bank account information

Success Status How example looks

example #



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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: Stack(
            children: [
              const Text(
                'Hide me!',
                style: TextStyle(fontSize: 40),
              ),
              Concealer(height: 20, width: 20)
            ],
          ),
        ),
      ),
    );
  }
}
Success Status How example looks

ConcealerWithStar #



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

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

class MyApp extends StatelessWidget {
String myText = 'hide me!';
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
            child: ConcealerWithStar(
              myString: myText,
              isHide: false,
              textStyle: const TextStyle(fontSize: 35)),, 
      ),
    );
  }
}
Success Status How example looks

ConcealerWithColor #

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: ConcealerWithColorCard(
              color: Colors.amberAccent,
              myString: 'hide me!',
              isHide: true,
              textStyle: const TextStyle(fontSize: 35)),
        ),
      ),
    );
  }
}
2
likes
120
points
109
downloads

Publisher

unverified uploader

Weekly Downloads

With this package, you can hide confidential page information from others, such as bank account information

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on concealer