You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
import 'package:aku_ui/common_widgets/aku_cupertino_button.dart';
|
|
import 'package:aku_ui/common_widgets/aku_material_button.dart';
|
|
import 'package:aku_ui/mixins/aku_mixins.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
///按钮
|
|
class AkuButton extends StatefulWidget {
|
|
@required
|
|
final Widget child;
|
|
final double height;
|
|
final double radius;
|
|
final EdgeInsets padding;
|
|
@required
|
|
final VoidCallback onPressed;
|
|
final Color color;
|
|
final double width;
|
|
AkuButton({
|
|
Key key,
|
|
this.child,
|
|
this.height = 0,
|
|
this.radius = 0,
|
|
this.onPressed,
|
|
this.padding = EdgeInsets.zero,
|
|
this.color = Colors.transparent,
|
|
this.width = 0,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
_AkuButtonState createState() => _AkuButtonState();
|
|
}
|
|
|
|
class _AkuButtonState extends State<AkuButton> with PlatformMixin {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return isIOS
|
|
? AkuCupertinoButton(
|
|
onPressed: widget.onPressed,
|
|
child: widget.child,
|
|
radius: widget.radius,
|
|
minHeight: widget.height,
|
|
padding: widget.padding,
|
|
color: widget.color,
|
|
minWidth: widget.width,
|
|
)
|
|
: AkuMaterialButton(
|
|
onPressed: widget.onPressed,
|
|
child: widget.child,
|
|
radius: widget.radius,
|
|
height: widget.height,
|
|
padding: widget.padding,
|
|
color: widget.color,
|
|
minWidth: widget.width,
|
|
);
|
|
}
|
|
}
|