罗广聪

更改空格缩进

... ... @@ -80,7 +80,7 @@
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
... ...
... ... @@ -83,7 +83,7 @@ export default class ArticleTemplate extends Component {
source={{ uri: item.image }}
/>
) : null}
<Text style={styles.paragraphContent}>{item.content}</Text>
<Text style={styles.paragraphContent}>{" "+item.content}</Text>
</View>
);
})}
... ... @@ -135,7 +135,9 @@ const styles = StyleSheet.create({
alignSelf: "center",
color: "#1B9341",
fontSize: 15,
marginBottom: 15
marginBottom: 15,
lineHeight: 28,
textAlign: "center",
// backgroundColor: "red",
},
paragraphImage: {
... ... @@ -147,7 +149,7 @@ const styles = StyleSheet.create({
paragraphContent: {
color: "#555555",
fontSize: 15,
lineHeight: 22
lineHeight: 25,
// backgroundColor: "yellow",
}
});
... ...