mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-13 01:18:18 +08:00
13 lines
392 B
TypeScript
13 lines
392 B
TypeScript
import { tailwindRunner, expectError } from "./runner";
|
|
|
|
tailwindRunner(
|
|
"Layout - Position",
|
|
expectError(["fixed", "sticky"]),
|
|
// static is a special scenario see to-react-native/properties/position.ts
|
|
[
|
|
["static", { styles: {} }],
|
|
["absolute", { styles: { absolute: { position: "absolute" } } }],
|
|
["relative", { styles: { relative: { position: "relative" } } }],
|
|
]
|
|
);
|