feat: improved css-shadow parser

This commit is contained in:
Igor Randjelovic
2021-02-20 00:20:35 +01:00
committed by Nathan Walker
parent 673387cf99
commit d2f50e50bb
7 changed files with 94 additions and 77 deletions

View File

@ -1,6 +1,15 @@
import { EventData, TextBase } from '@nativescript/core';
const possibleValues = ['2 10 4 rgb(255, 100, 100)', '2 10 2 rgba(10, 10, 10, 0.5)', '1 1 1 #55a', '2 2 2 #aaa', '0 0 1 yellow', '-1 -1 1 #aaa', ''];
// prettier-ignore
const possibleValues = [
'2 10 4 rgb(255, 100, 100)',
'2 10 2 rgba(10, 10, 10, 0.5)',
'1 1 1 #55a',
'2 2 2 #333',
'0 0 1 yellow',
'-1 -1 1 #333',
''
];
let currentIndex = 0;
export function butonTap(args: EventData) {