mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-04 19:19:29 +01:00
36 lines
835 B
Dart
36 lines
835 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
class AdaptiveFlatButton extends StatelessWidget {
|
|
final String label;
|
|
final Color? textColor;
|
|
final void Function()? onPressed;
|
|
|
|
const AdaptiveFlatButton({
|
|
Key? key,
|
|
required this.label,
|
|
this.textColor,
|
|
this.onPressed,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (PlatformInfos.isCupertinoStyle) {
|
|
return CupertinoDialogAction(
|
|
onPressed: onPressed,
|
|
textStyle: textColor != null ? TextStyle(color: textColor) : null,
|
|
child: Text(label),
|
|
);
|
|
}
|
|
return TextButton(
|
|
onPressed: onPressed,
|
|
child: Text(
|
|
label,
|
|
style: TextStyle(color: textColor),
|
|
),
|
|
);
|
|
}
|
|
}
|