Profile Actions Items

In this lesson, we discuss adding actions items for Profile Page in detail.

Introduction

In this lesson, you’ll work on adding Call, Text, Video Call, Email, Directions & Pay buttons as shown below:

widget

Add Container

Let’s start adding the Container widget and Row child to it. Adding a margin to the Container widget gives some empty spacing around it. Then add mainAxisAlignment: MainAxisAlignment.spaceEvenly to make all profile action items evenly spaced.

Container(
 margin: const EdgeInsets.only(top: 8, bottom: 8),
 child: Row(
   mainAxisAlignment: MainAxisAlignment.spaceEvenly,
   children: <Widget>[],
 ),
),

Organizing code

Each ...

Access this course and 1400+ top-rated courses and projects.