git-touch-android-ios-app/lib/widgets/repo_header.dart

84 lines
2.3 KiB
Dart
Raw Normal View History

2020-01-29 11:23:51 +01:00
import 'package:flutter/material.dart';
import 'package:git_touch/models/theme.dart';
import 'package:git_touch/utils/utils.dart';
import 'package:git_touch/widgets/avatar.dart';
import 'package:git_touch/widgets/link.dart';
import 'package:provider/provider.dart';
class RepoHeader extends StatelessWidget {
2021-05-16 09:16:35 +02:00
final String? avatarUrl;
final String? avatarLink;
final String? owner;
final String? name;
final String? description;
final String? homepageUrl;
final List<Widget>? actions;
final List<Widget>? trailings;
2020-01-29 11:23:51 +01:00
RepoHeader({
2021-05-16 09:16:35 +02:00
required this.avatarUrl,
required this.avatarLink,
required this.owner,
required this.name,
required this.description,
2020-01-29 11:23:51 +01:00
this.homepageUrl,
this.actions,
this.trailings,
});
@override
Widget build(BuildContext context) {
final theme = Provider.of<ThemeModel>(context);
return Container(
padding: CommonStyle.padding,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: join(SizedBox(height: 12), [
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Avatar(
url: avatarUrl,
size: AvatarSize.small,
2020-02-01 03:46:11 +01:00
linkUrl: avatarLink,
2020-01-29 11:23:51 +01:00
),
SizedBox(width: 8),
2020-04-12 05:08:31 +02:00
Expanded(
child: Text(
2020-04-16 05:36:48 +02:00
'$owner / $name',
style: TextStyle(
fontSize: 20,
color: theme.palette.primary,
2020-04-12 05:08:31 +02:00
),
2020-04-16 05:36:48 +02:00
overflow: TextOverflow.visible,
),
2020-01-29 11:23:51 +01:00
),
],
),
2021-05-16 09:16:35 +02:00
if (actions != null) ...actions!,
if (description != null && description!.isNotEmpty)
2020-01-29 11:23:51 +01:00
Text(
2021-05-16 09:16:35 +02:00
description!,
2020-01-29 11:23:51 +01:00
style: TextStyle(
color: theme.palette.secondaryText,
fontSize: 17,
),
),
2021-05-16 09:16:35 +02:00
if (homepageUrl != null && homepageUrl!.isNotEmpty)
LinkWidget(
2020-01-29 11:23:51 +01:00
url: homepageUrl,
child: Text(
2021-05-16 09:16:35 +02:00
homepageUrl!,
2020-01-29 11:23:51 +01:00
style: TextStyle(
color: theme.palette.primary,
fontSize: 17,
),
),
),
2021-05-16 09:16:35 +02:00
if (trailings != null) ...trailings!
2020-01-29 11:23:51 +01:00
]),
),
);
}
}