mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
feat: improved css-shadow parser
This commit is contained in:

committed by
Nathan Walker

parent
673387cf99
commit
d2f50e50bb
@ -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) {
|
||||
|
Reference in New Issue
Block a user