3
0
Fork 0
trifid_mobile/lib/components/config/ConfigPageItem.dart

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
2.1 KiB
Dart
Raw Normal View History

2020-07-27 20:43:58 +00:00
import 'dart:io';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:mobile_nebula/components/SpecialButton.dart';
import 'package:mobile_nebula/services/utils.dart';
class ConfigPageItem extends StatelessWidget {
const ConfigPageItem(
{Key? key,
2020-07-27 20:43:58 +00:00
this.label,
this.content,
this.labelWidth = 100,
this.onPressed,
this.disabled = false,
2020-07-27 20:43:58 +00:00
this.crossAxisAlignment = CrossAxisAlignment.center})
: super(key: key);
final Widget? label;
final Widget? content;
2020-07-27 20:43:58 +00:00
final double labelWidth;
final CrossAxisAlignment crossAxisAlignment;
final onPressed;
final bool disabled;
2020-07-27 20:43:58 +00:00
@override
Widget build(BuildContext context) {
var theme;
if (Platform.isAndroid) {
final origTheme = Theme.of(context);
theme = origTheme.copyWith(
textTheme: origTheme.textTheme
.copyWith(button: origTheme.textTheme.button!.copyWith(fontWeight: FontWeight.normal)));
2020-07-27 20:43:58 +00:00
return Theme(data: theme, child: _buildContent(context));
} else {
final origTheme = CupertinoTheme.of(context);
theme = origTheme.copyWith(primaryColor: CupertinoColors.label.resolveFrom(context));
return CupertinoTheme(data: theme, child: _buildContent(context));
}
}
Widget _buildContent(BuildContext context) {
return SpecialButton(
onPressed: this.disabled ? null : onPressed,
2020-07-27 20:43:58 +00:00
color: Utils.configItemBackground(context),
child: Container(
padding: EdgeInsets.only(left: 15),
constraints: BoxConstraints(minHeight: Utils.minInteractiveSize, minWidth: double.infinity),
child: Row(
crossAxisAlignment: crossAxisAlignment,
children: <Widget>[
label != null ? Container(width: labelWidth, child: label) : Container(),
Expanded(child: Container(child: content, padding: EdgeInsets.only(right: 10))),
this.disabled ? Container() : Icon(CupertinoIcons.forward, color: CupertinoColors.placeholderText.resolveFrom(context), size: 18)
2020-07-27 20:43:58 +00:00
],
)),
);
}
}