Hello, my name is Antika. I recently embarked on a coding journey and have been focusing on learning HTML/CSS/JS along with the basics of React. As a beginner developer, my current project involves creating a Study planner app for myself using React Native Expo.
One challenge I am facing is transitioning from traditional programming languages like HTML, CSS, and JS to more advanced ones like React and Flutter. Specifically, I'm struggling with importing multiple stylesheets in React Native projects, similar to how it's done in HTML.
Below are the individual CSS files that I need to import:
<link rel="stylesheet" href="assets/css/vendor/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/vendor/font-awesome.css">
<link rel="stylesheet" href="assets/css/vendor/slick.css">
<link rel="stylesheet" href="assets/css/vendor/slick-theme.css">
<link rel="stylesheet" href="assets/css/vendor/base.css">
<link rel="stylesheet" href="assets/css/plugins/plugins.css">
<link rel="stylesheet" href="assets/css/style.css">
Currently, I am utilizing Expo for this specific project. Despite being new to React Native and Expo, I am determined to expand my knowledge and grasp different features and syntax. Any assistance or guidance provided would be greatly appreciated.