1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-08 23:58:46 +01:00
git-touch-android-ios-app/lib/screens/gh_gist_object.dart
Rongjian Zhang efe0126bdb build: migrate to NNBD
closes #136
2021-05-16 15:16:35 +08:00

33 lines
938 B
Dart

import 'package:flutter/material.dart';
import 'package:git_touch/scaffolds/common.dart';
import 'package:git_touch/utils/utils.dart';
import 'package:git_touch/widgets/app_bar_title.dart';
import 'package:git_touch/widgets/blob_view.dart';
import 'package:git_touch/widgets/action_entry.dart';
class GistObjectScreen extends StatelessWidget {
final String login;
final String id;
final String file;
final String? raw;
final String? content;
GistObjectScreen(this.login, this.id, this.file, {this.raw, this.content});
@override
Widget build(BuildContext context) {
return CommonScaffold(
title: AppBarTitle(file),
action: ActionEntry(
iconData: Ionicons.cog,
url: '/choose-code-theme',
),
body: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: BlobView(
file,
text: content,
)));
}
}