Flutter Profile Page UI – Travel App

Free Profile Travel app Profile Page UI in the FlutterApplication.

This Profile UI designed with Android studio. Minimal design by using below Flutter widgets

BoxDecoration,

SingleChildScrollView,

Container,

ClipRRect.

Create Header Section abo…


This content originally appeared on DEV Community and was authored by rrtutors

Free Profile Travel app Profile Page UI in the FlutterApplication.

This Profile UI designed with Android studio. Minimal design by using below Flutter widgets

BoxDecoration,

SingleChildScrollView,

Container,

ClipRRect.
Flutter Profile UI

Create Header Section about Profile pick and Social Links

Row(
                    children: <Widget>[
                      Container(
                        height: 11 * SizeConfig.heightMultiplier,
                        width: 22 * SizeConfig.widthMultiplier,
                        decoration: BoxDecoration(
                            shape: BoxShape.circle,
                            image: DecorationImage(
                                fit: BoxFit.cover,
                                image: NetworkImage("https://i.pinimg.com/736x/f9/81/d6/f981d67d2ab128e21f0ae278082d0426.jpg"))
                        ),
                      ),
                      SizedBox(width: 5 * SizeConfig.widthMultiplier,),
                      Column(
                        crossAxisAlignment: CrossAxisAlignment.start,
                        children: <Widget>[
                          Text("Manisha Agarval", style: TextStyle(
                              color: Colors.white,
                              fontSize: 3 * SizeConfig.textMultiplier,
                              fontWeight: FontWeight.bold
                          ),),
                          SizedBox(height: 1 * SizeConfig.heightMultiplier,),
                          Row(
                            children: <Widget>[
                              Row(
                                children: <Widget>[
                                  Image.network(
                                    "https://icons-for-free.com/iconfiles/png/512/fb+icon-1320183899414660008.png",
                                    height: 5 * SizeConfig.heightMultiplier,
                                    width: 5 * SizeConfig.widthMultiplier,
                                  ),
                                  SizedBox(width: 2 * SizeConfig.widthMultiplier,),
                                  Text("Profile", style: TextStyle(
                                    color: Colors.white60,
                                    fontSize: 1.5 * SizeConfig.textMultiplier,
                                  ),),
                                ],
                              ),
                              SizedBox(width: 7 * SizeConfig.widthMultiplier,),
                              Row(
                                children: <Widget>[
                                  Image.network(
                                    "https://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Instagram-Icon.png/1025px-Instagram-Icon.png",
                                    height: 5 * SizeConfig.heightMultiplier,
                                    width: 5 * SizeConfig.widthMultiplier,
                                  ),
                                  SizedBox(width: 2 * SizeConfig.widthMultiplier,),
                                  Text("Insta", style: TextStyle(
                                    color: Colors.white60,
                                    fontSize: 1.5 * SizeConfig.textMultiplier,
                                  ),),
                                ],
                              )
                            ],
                          )
                        ],

In the above we create profile pick as circler, reffere about create circle avathar in flutter

Create Row to display Followers and Following Widgets

Row(
                    mainAxisAlignment: MainAxisAlignment.spaceBetween,
                    children: <Widget>[
                      Column(
                        children: <Widget>[
                          Text("22.2K", style: TextStyle(
                              color: Colors.white,
                              fontSize: 3 * SizeConfig.textMultiplier,
                              fontWeight: FontWeight.bold
                          ),),
                          Text("Followers", style: TextStyle(
                            color: Colors.white70,
                            fontSize: 1.9 * SizeConfig.textMultiplier,
                          ),),
                        ],
                      ),
                      Column(
                        children: <Widget>[
                          Text("1243", style: TextStyle(
                              color: Colors.white,
                              fontSize: 3 * SizeConfig.textMultiplier,
                              fontWeight: FontWeight.bold
                          ),),
                          Text("Following", style: TextStyle(
                            color: Colors.white70,
                            fontSize: 1.9 * SizeConfig.textMultiplier,
                          ),),
                        ],
                      ),
                      Container(
                        decoration: BoxDecoration(
                          border: Border.all(color: Colors.white60),
                          borderRadius: BorderRadius.circular(5.0),
                        ),
                        child: Padding(
                          padding: const EdgeInsets.all(8.0),
                          child: Text("EDIT PROFILE", style: TextStyle(
                              color: Colors.white60,
                              fontSize: 1.8 * SizeConfig.textMultiplier
                          ),),
                        ),
                      ),
                    ],
                  ),

Download source about to Flutter Profile Page Ui


This content originally appeared on DEV Community and was authored by rrtutors


Print Share Comment Cite Upload Translate Updates
APA

rrtutors | Sciencx (2021-11-27T06:23:43+00:00) Flutter Profile Page UI – Travel App. Retrieved from https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/

MLA
" » Flutter Profile Page UI – Travel App." rrtutors | Sciencx - Saturday November 27, 2021, https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/
HARVARD
rrtutors | Sciencx Saturday November 27, 2021 » Flutter Profile Page UI – Travel App., viewed ,<https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/>
VANCOUVER
rrtutors | Sciencx - » Flutter Profile Page UI – Travel App. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/
CHICAGO
" » Flutter Profile Page UI – Travel App." rrtutors | Sciencx - Accessed . https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/
IEEE
" » Flutter Profile Page UI – Travel App." rrtutors | Sciencx [Online]. Available: https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/. [Accessed: ]
rf:citation
» Flutter Profile Page UI – Travel App | rrtutors | Sciencx | https://www.scien.cx/2021/11/27/flutter-profile-page-ui-travel-app/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.