Aldığım hata şu şekilde:



/App.js: Unexpected token, expected "}" (1569:11)
1567 | const styles = StyleSheet.create({ 1568 | // Core layout styles > 1569 | container: { | ^ 1570 | flex: 1, 1571 | backgroundColor: '#f8f9fa', 1572 | },
Evaluating App.js Loading App.js
Error: /module:/App.js: Unexpected token, expected "}" (1569:11) 1567 | const styles = StyleSheet.create({ 1568 | // Core layout styles > 1569 | container: { | ^ 1570 | flex: 1, 1571 | backgroundColor: '#f8f9fa', 1572 | }, at Object.eval (.pp.js:1:113) at eval (.pp.js:2:4) at eval (.pp.js:3:3) at eval (<anonymous>)



Ne yaptıysam çözemedim. Denediğim ve bildiğim en iyi yöntem şuydu o da işe yaramıyor:

const styles = StyleSheet.create({
// Core layout styles
container: {
flex: 1,
backgroundColor: '#f8f9fa',
},
mainContainer: {
flex: 1,
},
screenContainer: {
flex: 1,
paddingHorizontal: 16,
},
// Add the rest of your styles here
});