Lines Matching refs:styleList
1387 @State styleList: StyleList = new StyleList();
1390 this.styleList.push(new TextStyle(i));
1397 for (let i = 0; i < this.styleList.length; i++) {
1398 this.styleList[i].fontSize++;
1403 ForEach(this.styleList, (item: TextStyle) => {
1444 @State styleList: StyleList = new StyleList();
1447 this.styleList.push(new TextStyle(i));
1454 for (let i = 0; i < this.styleList.length; i++) {
1455 this.styleList[i].fontSize++;
1460 ForEach(this.styleList, (item: TextStyle) => {
1475 …are passed by reference. Therefore, when the value of **fontSize** in **styleList** is changed in …