Showing
2 changed files
with
6 additions
and
4 deletions
| @@ -80,7 +80,7 @@ | @@ -80,7 +80,7 @@ | ||
| 80 | </AdditionalOptions> | 80 | </AdditionalOptions> |
| 81 | </TestAction> | 81 | </TestAction> |
| 82 | <LaunchAction | 82 | <LaunchAction |
| 83 | - buildConfiguration = "Release" | 83 | + buildConfiguration = "Debug" |
| 84 | selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | 84 | selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" |
| 85 | selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | 85 | selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" |
| 86 | launchStyle = "0" | 86 | launchStyle = "0" |
| @@ -83,7 +83,7 @@ export default class ArticleTemplate extends Component { | @@ -83,7 +83,7 @@ export default class ArticleTemplate extends Component { | ||
| 83 | source={{ uri: item.image }} | 83 | source={{ uri: item.image }} |
| 84 | /> | 84 | /> |
| 85 | ) : null} | 85 | ) : null} |
| 86 | - <Text style={styles.paragraphContent}>{item.content}</Text> | 86 | + <Text style={styles.paragraphContent}>{" "+item.content}</Text> |
| 87 | </View> | 87 | </View> |
| 88 | ); | 88 | ); |
| 89 | })} | 89 | })} |
| @@ -135,7 +135,9 @@ const styles = StyleSheet.create({ | @@ -135,7 +135,9 @@ const styles = StyleSheet.create({ | ||
| 135 | alignSelf: "center", | 135 | alignSelf: "center", |
| 136 | color: "#1B9341", | 136 | color: "#1B9341", |
| 137 | fontSize: 15, | 137 | fontSize: 15, |
| 138 | - marginBottom: 15 | 138 | + marginBottom: 15, |
| 139 | + lineHeight: 28, | ||
| 140 | + textAlign: "center", | ||
| 139 | // backgroundColor: "red", | 141 | // backgroundColor: "red", |
| 140 | }, | 142 | }, |
| 141 | paragraphImage: { | 143 | paragraphImage: { |
| @@ -147,7 +149,7 @@ const styles = StyleSheet.create({ | @@ -147,7 +149,7 @@ const styles = StyleSheet.create({ | ||
| 147 | paragraphContent: { | 149 | paragraphContent: { |
| 148 | color: "#555555", | 150 | color: "#555555", |
| 149 | fontSize: 15, | 151 | fontSize: 15, |
| 150 | - lineHeight: 22 | 152 | + lineHeight: 25, |
| 151 | // backgroundColor: "yellow", | 153 | // backgroundColor: "yellow", |
| 152 | } | 154 | } |
| 153 | }); | 155 | }); |
-
Please register or login to post a comment