import { Component } from '@angular/core';
import { IonButton, IonToast } from '@ionic/angular/standalone';
@Component({
selector: 'app-example',
templateUrl: 'example.component.html',
styleUrls: ['example.component.css'],
imports: [IonButton, IonToast],
})
export class ExampleComponent {
toastButtons = [
{
text: 'Action With Long Text',
},
];
}
Files
example_component_ts.md
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.