lemmur-app-android/lib/pages/users_list.dart

69 lines
2.3 KiB
Dart
Raw Normal View History

import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:lemmy_api_client/lemmy_api_client.dart';
import '../widgets/markdown_text.dart';
2020-09-30 19:05:00 +02:00
/// Infinite list of Users fetched by the given fetcher
class UsersListPage extends StatelessWidget {
final String title;
final List<UserView> users;
const UsersListPage({Key key, @required this.users, this.title})
: assert(users != null),
super(key: key);
2020-09-30 19:05:00 +02:00
// TODO: go to user
void goToUser(BuildContext context, int id) {
print('GO TO USER $id');
}
@override
Widget build(BuildContext context) {
2020-09-08 23:16:30 +02:00
final theme = Theme.of(context);
2020-09-30 19:05:00 +02:00
// TODO: change to infinite scroll
return Scaffold(
appBar: AppBar(
2020-09-08 23:16:30 +02:00
title: Text(title ?? '', style: theme.textTheme.headline6),
centerTitle: true,
2020-09-08 23:16:30 +02:00
backgroundColor: theme.cardColor,
iconTheme: theme.iconTheme,
),
body: ListView.builder(
itemBuilder: (context, i) => ListTile(
2020-09-09 11:19:12 +02:00
title: Text((users[i].preferredUsername == null ||
users[i].preferredUsername.isEmpty)
? '@${users[i].name}'
: users[i].preferredUsername),
2020-09-08 23:16:30 +02:00
subtitle: users[i].bio != null
? Opacity(
opacity: 0.5,
child: MarkdownText(
users[i].bio,
instanceHost: users[i].instanceHost,
),
2020-09-08 23:16:30 +02:00
)
: null,
onTap: () => goToUser(context, users[i].id),
leading: users[i].avatar != null
? CachedNetworkImage(
height: 50,
width: 50,
imageUrl: users[i].avatar,
errorWidget: (_, __, ___) =>
2021-01-03 19:43:39 +01:00
const SizedBox(height: 50, width: 50),
imageBuilder: (context, imageProvider) => Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
image: DecorationImage(
fit: BoxFit.cover, image: imageProvider),
),
))
2021-01-03 19:43:39 +01:00
: const SizedBox(width: 50),
),
itemCount: users.length,
));
}
}