@dhiraj0720/report1chart 2.9.0 → 2.9.1
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
|
@@ -28,6 +28,8 @@ const Report1AScreen = ({ endpoint, token, onBack }) => {
|
|
|
28
28
|
</TouchableOpacity>
|
|
29
29
|
<Text style={styles.headerTitle}>PERFORMANS RAPORU (USD)</Text>
|
|
30
30
|
</View>
|
|
31
|
+
|
|
32
|
+
|
|
31
33
|
|
|
32
34
|
{/* FULLSCREEN BUTTON */}
|
|
33
35
|
<TouchableOpacity
|
|
@@ -65,7 +67,9 @@ const Report1AScreen = ({ endpoint, token, onBack }) => {
|
|
|
65
67
|
|
|
66
68
|
// ONLY ADDED THIS STYLES PART — NOTHING ELSE CHANGED
|
|
67
69
|
const styles = StyleSheet.create({
|
|
68
|
-
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
header: {
|
|
69
73
|
flexDirection: 'row',
|
|
70
74
|
alignItems: 'center',
|
|
71
75
|
paddingHorizontal: 16,
|
|
@@ -73,7 +77,6 @@ const styles = StyleSheet.create({
|
|
|
73
77
|
backgroundColor: '#4E79A7',
|
|
74
78
|
borderBottomWidth: 1,
|
|
75
79
|
borderColor: '#4E79A7',
|
|
76
|
-
marginBottom: 12,
|
|
77
80
|
},
|
|
78
81
|
backIcon: {
|
|
79
82
|
fontSize: 32,
|
|
@@ -119,7 +119,7 @@ const Report3AScreen = ({ api, token, onBack }) => {
|
|
|
119
119
|
<TouchableOpacity
|
|
120
120
|
onPress={() => setFullscreen(true)} style={styles.filterItem}
|
|
121
121
|
>
|
|
122
|
-
<Text style={styles.filterText}>⤢ Full Screen</Text>
|
|
122
|
+
<Text style={styles.filterText} width={22} height={22}>⤢ Full Screen</Text>
|
|
123
123
|
</TouchableOpacity>
|
|
124
124
|
</View>
|
|
125
125
|
|
|
@@ -205,7 +205,7 @@ const styles = StyleSheet.create({
|
|
|
205
205
|
borderBottomWidth: 1,
|
|
206
206
|
borderColor: '#4E79A7',
|
|
207
207
|
},
|
|
208
|
-
backIcon: { fontSize: 28, color: '#fff', fontWeight: '
|
|
208
|
+
backIcon: { fontSize: 28, color: '#fff', fontWeight: '800' },
|
|
209
209
|
headerTitle: { fontSize: 19, fontWeight: '700', color: '#fff', flex: 1, textAlign: 'center' },
|
|
210
210
|
|
|
211
211
|
filterBar: {
|