Я пытаюсь заставить этот код работать
import { StyleSheet } from 'react-native';
const Container = styled.View`
justify-content: center;
align-items: center;
${StyleSheet.absoluteFillObject};
`;
К сожалению, машинопись работает со следующей ошибкой:
[ts]
Argument of type 'AbsoluteFillStyle' is not assignable to parameter of type 'Interpolation<ThemedStyledProps<ViewProps & ContainerProps, any>>'.
Type 'AbsoluteFillStyle' is not assignable to type 'ReadonlyArray<string | number | false | Styles | StyledComponentClass<any, any, any> | InterpolationFunction<ThemedStyledProps<ViewProps & ContainerProps, any>> | ReadonlyArray<FlattenInterpolation<ThemedStyledProps<ViewProps & ContainerProps, any>>> | null | undefined>'.
Property 'length' is missing in type 'AbsoluteFillStyle'.
Любая помощь оценивается заранее, спасибо.