An open API service indexing awesome lists of open source software.

https://github.com/bynicodevelop/flutter_profile_list


https://github.com/bynicodevelop/flutter_profile_list

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# flutter_profile_list

This plugin allows you to generate a list of profiles in a few lines of code.

Allows to capture the "ontap" event of each item.

Each avatar has the Hero widget

## Getting Started

```
import 'package:faker/faker.dart';
import 'package:flutter/material.dart';

import 'package:flutter_profile_list/flutter_profile_list.dart';
import 'package:flutter_profile_list/models/Profile.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State {
final Faker _faker = Faker();
List _profiles = List();

@override
void initState() {
super.initState();

// Creating a List of ItemProfileModel
for (int i = 0; i < 30; i++) {
int randInt = _faker.randomGenerator.integer(9);

_profiles.add(
ItemProfileModel(
uid: _faker.randomGenerator.string(10),
username: _faker.person.name(),
status: randInt % 3 != 0 ? _faker.lorem.sentences(2).join(' ') : '',
avatarURL: _faker.image.image(width: 200, height: 200, keywords: [
'person',
DateTime.now().toString(),
]),
),
);
}
}

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
// Call the Widget
body: ProfileList(
// Capture the on tap event to trigger an action such as a redirect
onTap: (ItemProfileModel profile) => print(profile.toJson()),
// Set the list of items (profiles)
profiles: _profiles,
),
),
);
}
}
```