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) }
29
+
val scope = rememberCoroutineScope()
30
+
31
+
val listState = rememberLazyListState()
32
+
val firstVisibleItem by derivedStateOf { listState.firstVisibleItemIndex }
28
33
29
34
val paragraphs = remember {
30
35
listOf(
31
-
"Hi, I'm Nishant. I'm currently a hobbyist software developer and a computer science student at the Indian Institute of Information Technology Bhagalpur.",
36
+
"Hi, I'm Nishant. I'm currently a hobbyist open-source software developer and a computer science student at the Indian Institute of Information Technology Bhagalpur.",
32
37
"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."
33
38
)
34
39
}
40
+
val paragraphCount = remember { paragraphs.size }
35
41
36
42
val experiences = remember {
37
43
listOf(
@@ -46,6 +52,7 @@ fun AppScreen(modifier: Modifier = Modifier) {
46
52
)
47
53
)
48
54
}
55
+
val experienceCount = remember { experiences.size }
49
56
50
57
val cardPadding = remember { 16.dp }
51
58
@@ -78,20 +85,26 @@ fun AppScreen(modifier: Modifier = Modifier) {
0 commit comments