You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var selectedItem by remember { mutableStateOf(0) }
24
+
val paragraphs = remember {
25
+
listOf(
26
+
"Hi, I'm Nishant. I'm currently a hobbyist software developer and a computer science student at the Indian Institute of Information Technology Bhagalpur.",
27
+
"I've written a variety of programs in multiple languages over my years as a hobbyist developer since back when I was in middle and high school (~2019) in Python and C++, spanning multiple areas like games, CLI tools, GUI tools and automation scripts. I'm continuing to work towards persuing my passion of software development as my career, now as a CS student."
28
+
)
29
+
}
30
+
31
+
24
32
Row(
25
33
modifier =Modifier
26
34
.padding(start =32.dp, end =48.dp)
@@ -46,7 +54,7 @@ fun AppScreen(modifier: Modifier = Modifier) {
46
54
"I build performant, beautiful apps for mobile phones.",
0 commit comments