chauhan-abhi / flutter-apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flutter-Apps

  • This repository contains UI clones of common apps or dribble challenges

Sceenshots

WhatApp Clone

Chat Sceen
 
  ListView.builder(
      itemCount: mockData.length,
      itemBuilder: (context, i) => new Column(
        children: [
          new Divider(
            height: 10.0,
          ),
          new ListTile(
            leading: new CircleAvatar(
              foregroundColor: Theme.of(context)
                                    .primaryColor,
              backgroundColor: Colors.grey,
              backgroundImage: new NetworkImage(
              mockData[i].avatarUrl
              ),
            ),
            title: new Row(
              mainAxisAlignment: MainAxisAlignment.spaceBetween,
              children: [
                new Text(
                  mockData[i].name,
                  style: new TextStyle(
                  fontWeight: FontWeight.bold
                  ),
              ),
              new Text(
                mockData[i].time,
                style: new TextStyle(
                color: Colors.grey,
                fontSize: 14.0),
              ),
            ],
          ),
            subtitle: new Container(
              padding: const EdgeInsets.only(top: 5.0),
              child:  new Text(
              mockData[i].message,
              style: new TextStyle(
              color: Colors.grey,
              fontSize: 15.0),
          ),
        ),
      )
    ],
  ),
);

About


Languages

Language:Dart 90.6%Language:Swift 3.9%Language:Kotlin 3.3%Language:HTML 1.8%Language:Objective-C 0.4%