MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / activatedChanged

Method activatedChanged

core/src/components/fab/fab.tsx:37–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35 @Prop({ mutable: true }) activated = false;
36 @Watch('activated')
37 activatedChanged() {
38 const activated = this.activated;
39 const fab = this.getFab();
40 if (fab) {
41 fab.activated = activated;
42 }
43 Array.from(this.el.querySelectorAll('ion-fab-list')).forEach((list) => {
44 list.activated = activated;
45 });
46 }
47
48 componentDidLoad() {
49 if (this.activated) {

Callers 1

componentDidLoadMethod · 0.95

Calls 2

getFabMethod · 0.95
fromMethod · 0.80

Tested by

no test coverage detected