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 {
String myText = 'hide me!';
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
  int width = 300;
  int height = 300;
  String myText = 'hide me!';
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
            child: ConcealerWithBlur(
              width: width,
              height: width,
              myString: myText,
              isHide: True,
              textStyle: const TextStyle(fontSize: 35)),, 
      ),
    );
  }
}
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) {
  String myText = 'hide me!';
    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) {
  String myText = 'hide me!';
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: ConcealerWithColorCard(
              color: Colors.amberAccent,
              myString: myText,
              isHide: true,
              textStyle: const TextStyle(fontSize: 35)),
        ),
      ),
    );
  }
}