ts-basic-components-button.md 5.0 KB
Newer Older
Z
zengyawen 已提交
1
# Button
Z
zengyawen 已提交
2

Z
zengyawen 已提交
3

E
esterzhou 已提交
4
> ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE**
Z
zengyawen 已提交
5
> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
Z
zengyawen 已提交
6

Z
zengyawen 已提交
7 8 9 10 11

The **<Button>** component represents a component that can trigger actions.


## Required Permissions
Z
zengyawen 已提交
12 13 14

None

Z
zengyawen 已提交
15

E
esterzhou 已提交
16
## Child Components
Z
zengyawen 已提交
17

E
esterzhou 已提交
18
Supported
Z
zengyawen 已提交
19 20 21 22 23 24 25


## APIs

- Button(options?: {type?: ButtonType, stateEffect?: boolean})
    **Table1** options parameters
  
E
esterzhou 已提交
26
  | Name | Type | Mandatory | Default Value | Description |
Z
zengyawen 已提交
27
  | -------- | -------- | -------- | -------- | -------- |
E
esterzhou 已提交
28 29
  | type | ButtonType | No | Capsule | Button type. |
  | stateEffect | boolean | No | true | Whether to enable the state switchover effect when a button is pressed. When the state is set to **false**, the state switchover effect is disabled. |
Z
zengyawen 已提交
30 31 32


- Button(label?: string, options?: { type?: ButtonType, stateEffect?: boolean })
E
esterzhou 已提交
33
  Creates a button component based on text content. In this case, the **<Button>** component cannot contain child components.
Z
zengyawen 已提交
34 35 36

    **Table2** value parameters
  
E
esterzhou 已提交
37
  | Name | Type | Mandatory | Default Value | Description |
Z
zengyawen 已提交
38
  | -------- | -------- | -------- | -------- | -------- |
E
esterzhou 已提交
39 40
  | label | string | No | - | Button text. |
  | options | Object | No | - | For details, see the **options** parameters. |
Z
zengyawen 已提交
41 42 43 44


## Attributes

E
esterzhou 已提交
45
| Name | Type | Default Value | Description |
Z
zengyawen 已提交
46
| -------- | -------- | -------- | -------- |
E
esterzhou 已提交
47 48
| type | ButtonType | Capsule | Button type. |
| stateEffect | boolean | true | Whether to enable the state switchover effect. When the state is set to **false**, the state switchover effect is disabled. |
Z
zengyawen 已提交
49 50

- ButtonType enums
E
esterzhou 已提交
51
    | Name | Description |
Z
zengyawen 已提交
52
  | -------- | -------- |
E
esterzhou 已提交
53 54 55
  | Capsule | Capsule-type button (the round corner is half of the height by default). |
  | Circle | Circle button. |
  | Normal | Normal button (without rounded corners by default). |
Z
zengyawen 已提交
56

E
esterzhou 已提交
57
> ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE**
Z
zengyawen 已提交
58
> - The rounded corner of a button is set by using [Border](ts-universal-attributes-border.md). (The rounded corner cannot be set by using a border API.)
E
esterzhou 已提交
59 60
> - When the button type is **Capsule**, the **borderRadius** settings do not take effect, and the rounded corner of the button is always half of the button height. 
> - When the button type is **Circle**, the value of **borderRadius** is used as the button radius. If **borderRadius** is not set, the button radius is half of the width or height, whichever is smaller. 
Z
zengyawen 已提交
61 62 63 64 65
> - The button text is set using the [common text style](ts-universal-attributes-text-style.md).


## Example

Z
zengyawen 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

```
@Entry
@Component
struct ButtonExample {
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
      Text('Common button').fontSize(9).fontColor(0xCCCCCC)
      Flex({ alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
        Button('Ok', { type: ButtonType.Normal, stateEffect: true }).borderRadius(8).backgroundColor(0x317aff).width(90)
        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Row() {
            Image($r('app.media.loading')).width(20).height(20).margin({ left: 12 })
            Text('loading').fontSize(12).fontColor(0xffffff).margin({ left: 5, right: 12 })
          }.alignItems(VerticalAlign.Center)
        }.borderRadius(8).backgroundColor(0x317aff).width(90)
        Button('Disable', { type: ButtonType.Normal, stateEffect: false }).opacity(0.5)
          .borderRadius(8).backgroundColor(0x317aff).width(90)
      }

      Text('Capsule button').fontSize(9).fontColor(0xCCCCCC)
      Flex({ alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
        Button('Ok', { type: ButtonType.Capsule, stateEffect: true }).backgroundColor(0x317aff).width(90)
        Button({ type: ButtonType.Capsule, stateEffect: true }) {
          Row() {
            Image($r('app.media.loading')).width(20).height(20).margin({ left: 12 })
            Text('loading').fontSize(12).fontColor(0xffffff).margin({ left: 5, right: 12 })
          }.alignItems(VerticalAlign.Center).width(90)
        }.backgroundColor(0x317aff)
        .onClick((event: ClickEvent) => {
          AlertDialog.show({ message: 'The login is successful' })
        })
        Button('Disable', { type: ButtonType.Capsule, stateEffect: false }).opacity(0.5)
          .backgroundColor(0x317aff).width(90)
      }

      Text('Circle button').fontSize(9).fontColor(0xCCCCCC)
      Flex({ alignItems: ItemAlign.Center, wrap: FlexWrap.Wrap }) {
        Button({ type: ButtonType.Circle, stateEffect: true }) {
          Image($r('app.media.ic_public_app_filled')).width(20).height(20)
        }.width(55).height(55).backgroundColor(0x317aff)
        Button({ type: ButtonType.Circle, stateEffect: true }) {
          Image($r('app.media.ic_public_delete_filled')).width(30).height(30)
        }.width(55).height(55).margin({ left: 20 }).backgroundColor(0xF55A42)
      }
    }.height(400).padding({ left: 35, right: 35, top: 35 })
  }
}
```

Z
zengyawen 已提交
116
![en-us_image_0000001257138341](figures/en-us_image_0000001257138341.gif)