How to hide password entry in flutter?

I am making a Flutter application. I set the login and registration processes. But since I get the password as a string when I enter the password, what can I do to make the password appear as a star on the screen? I used firebase authentication for login and registration. Widget _entryField( String title, TextEditingController… Read More How to hide password entry in flutter?

How do I center the posts in the widget I created?

TextField textWidget(String text, IconData icon, bool isPasswordType, TextEditingController controller, TextAlign align) { return TextField( controller: controller, obscureText: isPasswordType, enableSuggestions: !isPasswordType, autocorrect: !isPasswordType, cursorColor: Colors.white, style: TextStyle(color: Colors.white.withOpacity(0.9)), decoration: InputDecoration( prefixIcon: Icon( icon, color: Colors.white70, ), labelText: text, labelStyle: TextStyle(color: Colors.white.withOpacity(0.9)), filled: true, floatingLabelBehavior: FloatingLabelBehavior.never, fillColor: const Color.fromARGB(255, 209, 107, 107).withOpacity(0.7), border: OutlineInputBorder( borderRadius: BorderRadius.circular(30.0), borderSide:… Read More How do I center the posts in the widget I created?