concealer 0.0.3
concealer: ^0.0.3 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
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) ], ), ), ), ); } }