focused border not taking the whole container flutter
Advertisements Here as shown the focused border is not taking the whole space. Can anybody explain why and fix it. Here is the code of the TextField : child: Padding( padding: const EdgeInsets.only(left: 20.0), child: TextField( controller: _emailController, decoration: InputDecoration( hintText: ‘Enter your email’, border: InputBorder.none, focusedBorder: OutlineInputBorder( borderSide: const BorderSide(color: Colors.deepPurple), borderRadius: BorderRadius.circular(12), ),… Read More focused border not taking the whole container flutter