skip to Main Content

How to hide Show the Password in TextField In Flutter

import 'package:flutter/material.dart'; class SignUpPage extends StatefulWidget { const SignUpPage({super.key}); @override State<SignUpPage> createState() => _SignUpPageState(); } class _SignUpPageState extends State<SignUpPage> { bool oT = true;//obscure-text for password @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( height: MediaQuery.of(context).size.height, width:…

VIEW QUESTION
Back To Top
Search