fln-espranza 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,7 +11,7 @@ interface IProps{
|
|
|
11
11
|
|
|
12
12
|
export default function EEmptyPlaceholder( { text }: IProps) {
|
|
13
13
|
return (
|
|
14
|
-
<View style={tw`
|
|
14
|
+
<View style={tw`flex justify-center items-center`}>
|
|
15
15
|
<ImageBackground source={require("../assets/images/empty.png")} style={{width: 200, height: 200}} />
|
|
16
16
|
<EText size="lg" style={tw`text-center text-gray-500 mt-5`}>
|
|
17
17
|
{text}
|
package/components/EOption.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
2
|
import { TouchableOpacity, View, TouchableOpacityProps } from 'react-native';
|
|
3
|
-
import { Colors } from 'react-native/Libraries/NewAppScreen';
|
|
4
3
|
import tw from '../../../lib/tailwind';
|
|
5
4
|
import EText from './EText';
|
|
5
|
+
import { Colors } from "../utils/Color";
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
interface RadioButtonProps extends TouchableOpacityProps {
|