import 'package:flutter/material.dart'; buildInputContainer(BuildContext context, TextEditingController user, String title, bool enabled) { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( title, style: TextStyle( color: Theme.of(context).primaryColorLight, fontSize: 14.0, ), ), // SizedBox( // height: 10.0, // ), TextField( enabled: enabled, autocorrect: false, textAlign: TextAlign.left, controller: user, style: TextStyle( fontSize: 16, color: Theme.of(context).primaryColorLight, ), decoration: InputDecoration( border: InputBorder.none, contentPadding: EdgeInsets.only(top: 10.0), // hintText: "Enter your " + first.toLowerCase() + " here", hintStyle: TextStyle(color: Colors.grey), ), ), ], ); }