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

Telegram Bot that says "Hi"

I'm trying to make a very simple Telegram Bot in Python that says "Hi" every minute. This is the code so far, but it does not post anything to my telegram. import requests import time bot_token = "insert_token_here" group_chat_id =…

VIEW QUESTION
Back To Top
Search