19 lines
620 B
Dart
19 lines
620 B
Dart
|
import 'package:flutter/cupertino.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:prasule/pw/platformwidget.dart';
|
||
|
|
||
|
class PlatformButton extends PlatformWidget<TextButton, CupertinoButton> {
|
||
|
final String text;
|
||
|
final void Function()? onPressed;
|
||
|
const PlatformButton(
|
||
|
{super.key, required this.text, required this.onPressed});
|
||
|
|
||
|
@override
|
||
|
TextButton createAndroidWidget(BuildContext context) =>
|
||
|
TextButton(onPressed: onPressed, child: Text(text));
|
||
|
|
||
|
@override
|
||
|
CupertinoButton createIosWidget(BuildContext context) =>
|
||
|
CupertinoButton(onPressed: onPressed, child: Text(text));
|
||
|
}
|