Skip to content

Taym95/flutter_hide_show_password_input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_hide_show_password_input

ezgif-1-34ddeac7c0dd

Installation

Add flutter_hide_show_password_input to your pubspec.yamlfile.

Usage

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      color: Colors.grey,
      home: Scaffold(
        appBar: AppBar(
          title: Text('Password Input Text'),
          backgroundColor: Colors.black87,
        ),
        body: Container(
            child: Padding(
          padding: const EdgeInsets.all(8.0),
          child: PasswordInputText(),
        )),
      ),
    );
  }
}

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages