flutter_sensitive_content 0.0.2 copy "flutter_sensitive_content: ^0.0.2" to clipboard
flutter_sensitive_content: ^0.0.2 copied to clipboard

A Flutter package for hiding the sensitive content of your app when you switch from one app to another. This way, no sensitive pieces of information are shown while the app previews.

example/lib/main.dart

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

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: SensitiveContent(
        publicContent: Center(
          child: Text("Public Data"),
        ),
        child: Center(
          child: Text("Sensitive Data"),
        ),
      ),
    );
  }
}
10
likes
150
pub points
55%
popularity

Publisher

unverified uploader

A Flutter package for hiding the sensitive content of your app when you switch from one app to another. This way, no sensitive pieces of information are shown while the app previews.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_sensitive_content