@dhiraj0720/report1chart 2.7.2 → 2.7.3
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.
package/package.json
CHANGED
|
@@ -63,4 +63,30 @@ const Report1AScreen = ({ endpoint, token, onBack }) => {
|
|
|
63
63
|
);
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
+
// ONLY ADDED THIS STYLES PART — NOTHING ELSE CHANGED
|
|
67
|
+
const styles = StyleSheet.create({
|
|
68
|
+
header: {
|
|
69
|
+
flexDirection: 'row',
|
|
70
|
+
alignItems: 'center',
|
|
71
|
+
paddingHorizontal: 16,
|
|
72
|
+
paddingVertical: 18,
|
|
73
|
+
backgroundColor: '#fff',
|
|
74
|
+
borderBottomWidth: 1,
|
|
75
|
+
borderColor: '#eee',
|
|
76
|
+
marginBottom: 12,
|
|
77
|
+
},
|
|
78
|
+
backIcon: {
|
|
79
|
+
fontSize: 28,
|
|
80
|
+
color: '#000',
|
|
81
|
+
marginRight: 16,
|
|
82
|
+
},
|
|
83
|
+
headerTitle: {
|
|
84
|
+
fontSize: 19,
|
|
85
|
+
fontWeight: '700',
|
|
86
|
+
color: '#000',
|
|
87
|
+
flex: 1,
|
|
88
|
+
textAlign: 'center',
|
|
89
|
+
},
|
|
90
|
+
});
|
|
91
|
+
|
|
66
92
|
export default Report1AScreen;
|