mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-20 18:15:29 +00:00
35 lines
1.2 KiB
Dart
35 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_platform_widgets/flutter_platform_widgets.dart';
|
|
import 'package:mobile_nebula/components/SimplePage.dart';
|
|
import 'package:mobile_nebula/services/share.dart';
|
|
|
|
class RenderedConfigScreen extends StatelessWidget {
|
|
final String config;
|
|
final String name;
|
|
|
|
RenderedConfigScreen({Key? key, required this.config, required this.name}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SimplePage(
|
|
title: Text('Rendered Site Config'),
|
|
scrollable: SimpleScrollable.both,
|
|
trailingActions: <Widget>[
|
|
Builder(
|
|
builder: (BuildContext context) {
|
|
return PlatformIconButton(
|
|
padding: EdgeInsets.zero,
|
|
icon: Icon(context.platformIcons.share, size: 28.0),
|
|
onPressed: () => Share.share(context, title: '$name.yaml', text: config, filename: '$name.yaml'),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
child: Container(
|
|
padding: EdgeInsets.all(5),
|
|
constraints: BoxConstraints(minWidth: MediaQuery.of(context).size.width),
|
|
child: SelectableText(config, style: TextStyle(fontFamily: 'RobotoMono', fontSize: 14)),
|
|
),
|
|
);
|
|
}
|
|
}
|