2020-04-30 18:04:24 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_highlight/flutter_highlight.dart';
|
|
|
|
import 'package:git_touch/models/theme.dart';
|
|
|
|
import 'package:git_touch/models/code.dart';
|
|
|
|
import 'package:git_touch/utils/utils.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:flutter_highlight/theme_map.dart';
|
|
|
|
|
|
|
|
class FilesItem extends StatelessWidget {
|
2021-05-16 09:16:35 +02:00
|
|
|
final String? filename;
|
|
|
|
final String? status;
|
|
|
|
final int? additions;
|
|
|
|
final int? deletions;
|
|
|
|
final String? patch;
|
2020-04-30 18:04:24 +02:00
|
|
|
|
|
|
|
FilesItem({
|
2021-05-16 09:16:35 +02:00
|
|
|
required this.filename,
|
|
|
|
required this.status,
|
|
|
|
required this.deletions,
|
|
|
|
required this.additions,
|
|
|
|
required this.patch,
|
2020-04-30 18:04:24 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
final codeProvider = Provider.of<CodeModel>(context);
|
|
|
|
return Card(
|
|
|
|
color: theme.palette.background,
|
|
|
|
margin: EdgeInsets.all(0),
|
|
|
|
child: ExpansionTile(
|
|
|
|
title: Text(
|
2021-05-16 09:16:35 +02:00
|
|
|
filename!,
|
2020-04-30 18:04:24 +02:00
|
|
|
style: TextStyle(
|
|
|
|
color: theme.palette.primary,
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
children: <Widget>[
|
|
|
|
SingleChildScrollView(
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
child: HighlightView(
|
2021-05-16 09:16:35 +02:00
|
|
|
patch!,
|
2020-04-30 18:04:24 +02:00
|
|
|
language: 'diff',
|
|
|
|
padding: CommonStyle.padding,
|
|
|
|
theme: themeMap[theme.brightness == Brightness.dark
|
|
|
|
? codeProvider.themeDark
|
2021-05-16 09:16:35 +02:00
|
|
|
: codeProvider.theme]!,
|
2020-04-30 18:04:24 +02:00
|
|
|
textStyle: TextStyle(
|
|
|
|
fontSize: codeProvider.fontSize.toDouble(),
|
|
|
|
fontFamily: codeProvider.fontFamilyUsed),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|