Mobile Application Development – CS344 – Lecture 1
Mobile Application Development – CS344 – Lecture 1 Read More »
Now lets change the code from src>App.js if you don’t want to use App.js then you can directly change code of index.js with following: import React from ‘react’;import ReactDOM from ‘react-dom/client’; const myFirstElement = Hello React! const root = ReactDOM.createRoot(document.getElementById(‘root’));root.render(myFirstElement); —— Now App.js file will not be called and our code is directly written here
ReactJS Day 1 Install NodeJS Install VS Code ReactJS Project Creation (npx)npx create-react-app my-react-app Goto my-react-app folder using CD Command and then Run the HelloWorld Projectnpm start also run following commandnpm install
nav_graph.xml fragment_splash.xml SplashFragment.kt fragment_register.xml RegisterFragment.kt fragment_login.xml LoginFragment.kt fragment_home.xml HomeFragment.kt fragment_profile.xml ProfileFragment.kt fragment_category.xml CategoryFragment.kt
Android Kotlin Tutorial Day 4 Read More »
Android Kotlin Tutorial Day 1 Learning Objective: Let’s start with Android App Development using Kotlin. Here is your Hello World Android App using Kotlin. FirstFragment.java SecondFragment.java MainActivity.java
Android Kotlin Tutorial Day 1 Read More »
Android Kotlin Tutorial Day 2 Learning Objective: Let’s start playing with Kotlin Language and do some basic operations like on button click display toast message to users, take input from edit text and display in textview and more. Button Click Event – Display Toast Message Read EditText Value > Convert to Integer and Do Sum Layout
Android Kotlin Tutorial Day 2 Read More »
Android Kotlin Tutorial Day 3 Learning Objective: Let’s try some most important codes like saving data into SharedPreference using Kotlin, Call Online API, and Display Static value into ListView. SharedPreference Example Call API Online ListView Display Items fragment_second.xml SecondFragment.kt
Android Kotlin Tutorial Day 3 Read More »
Java Tutorial Day 1 (Hello World) Learning Objective: Let’s start with Java Fundamental and Understand its syntax and usages in real life applications. funda1.java funda2.java funda3.java funda4.java funda5.java funda6.java
Java Tutorial Day 1 Read More »