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

76 lines
1.8 KiB
Dart
Raw Normal View History

2019-01-31 07:37:25 +01:00
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
2019-01-31 07:37:25 +01:00
import '../providers/settings.dart';
class Link extends StatelessWidget {
final Widget child;
final WidgetBuilder screenBuilder;
final Function beforeRedirect;
2019-02-06 06:06:11 +01:00
final Color bgColor;
final bool material;
final bool fullscreenDialog;
2019-02-08 16:20:28 +01:00
final Icon iconButton;
2019-01-31 07:37:25 +01:00
Link({
2019-02-08 16:20:28 +01:00
this.child,
this.screenBuilder,
this.beforeRedirect,
this.bgColor,
this.material = true,
this.fullscreenDialog = false,
2019-02-08 16:20:28 +01:00
this.iconButton,
}) : assert(child != null || iconButton != null);
2019-01-31 07:37:25 +01:00
void _onTap(BuildContext context, int theme) {
if (beforeRedirect != null) {
beforeRedirect();
}
if (screenBuilder != null) {
switch (theme) {
case ThemeMap.cupertino:
Navigator.of(context).push(CupertinoPageRoute(
builder: screenBuilder,
fullscreenDialog: fullscreenDialog,
));
break;
default:
Navigator.of(context).push(MaterialPageRoute(
builder: screenBuilder,
fullscreenDialog: fullscreenDialog,
));
}
}
}
2019-01-31 07:37:25 +01:00
@override
Widget build(BuildContext context) {
var theme = SettingsProvider.of(context).theme;
2019-02-08 16:20:28 +01:00
if (iconButton != null) {
return IconButton(
icon: iconButton,
onPressed: () => _onTap(context, theme),
);
}
if (!material) {
return GestureDetector(
child: child,
onTap: () => _onTap(context, theme),
);
}
2019-01-31 07:37:25 +01:00
return Material(
child: Ink(
2019-02-06 06:06:11 +01:00
color: bgColor ?? Colors.white,
2019-01-31 07:37:25 +01:00
child: InkWell(
child: child,
splashColor: theme == ThemeMap.cupertino ? Colors.transparent : null,
onTap: () => _onTap(context, theme),
2019-01-31 07:37:25 +01:00
),
),
);
}
}