Home > Enterprise >  how to do this kind of UI in flutter
how to do this kind of UI in flutter

Time:07-18

  Container( child: Column(children: [
                TextFormField(
                  style: TextStyle(color: Colors.white.withOpacity(0.5)),
                  decoration: InputDecoration(
                    hintText: "Company",
                    hintStyle: TextStyle(color: Color(0xff676767)),
                    filled: true,
                    fillColor: Color(0xff1e1e1e),
                    border: OutlineInputBorder(
                        // borderRadius: BorderRadius.circular(18),
                        ),
                  ),
                ),
                TextFormField(
                  style: TextStyle(color: Colors.white.withOpacity(0.5)),
                  decoration: InputDecoration(
                    hintText: "Title",
                    hintStyle: TextStyle(color: Color(0xff676767)),
                    filled: true,
                    fillColor: Color(0xff1e1e1e),
                    border: OutlineInputBorder(
                        // borderRadius: BorderRadius.circular(18),
                        ),
                  ),
                ),
              ]),
            ),

enter image description here

enter image description here

  • Related