87 lines
1.8 KiB
Dart
87 lines
1.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:git_touch/models/theme.dart';
|
|
|
|
// TODO:
|
|
class CupertinoLink extends StatefulWidget {
|
|
final Widget child;
|
|
final Function onTap;
|
|
|
|
CupertinoLink({this.child, this.onTap});
|
|
|
|
@override
|
|
_CupertinoLinkState createState() => _CupertinoLinkState();
|
|
}
|
|
|
|
class _CupertinoLinkState extends State<CupertinoLink> {
|
|
Color _color;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
color: _color,
|
|
child: GestureDetector(
|
|
onTap: widget.onTap,
|
|
onTapDown: (_) {
|
|
print('down');
|
|
setState(() {
|
|
_color = Colors.black12;
|
|
});
|
|
},
|
|
onTapUp: (_) {
|
|
print('up');
|
|
setState(() {
|
|
_color = null;
|
|
});
|
|
},
|
|
onTapCancel: () {
|
|
print('cacnel');
|
|
setState(() {
|
|
_color = null;
|
|
});
|
|
},
|
|
child: widget.child,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class Link extends StatelessWidget {
|
|
final Widget child;
|
|
final String url;
|
|
final Function onTap;
|
|
|
|
Link({
|
|
this.child,
|
|
this.url,
|
|
this.onTap,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
switch (theme.theme) {
|
|
case AppThemeType.cupertino:
|
|
return CupertinoButton(
|
|
minSize: 0,
|
|
child: child,
|
|
padding: EdgeInsets.zero,
|
|
onPressed: () async {
|
|
if (onTap != null) onTap();
|
|
if (url != null) theme.push(context, url);
|
|
},
|
|
);
|
|
default:
|
|
return InkWell(
|
|
child: child,
|
|
onTap: () async {
|
|
if (onTap != null) onTap();
|
|
if (url != null) theme.push(context, url);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
}
|