Skip to content

Commit 355e4e1

Browse files
authored
Merge pull request #58 from skydoves/add/intention-dir
Add Intention Description Dir URL
2 parents 73e7067 + b85cd30 commit 355e4e1

4 files changed

Lines changed: 27 additions & 0 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@TraceRecomposition
2+
@Composable
3+
fun <spot>UserProfile</spot>(user: User) {
4+
Text(user.name)
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@Composable
2+
fun <spot>UserProfile</spot>(user: User) {
3+
Text(user.name)
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<html>
2+
<body>
3+
Adds the <code>@TraceRecomposition</code> annotation to a Composable function to track recomposition events at runtime.
4+
<p>
5+
This annotation enables logging of parameter changes and recomposition counts, helping you debug performance issues
6+
and understand why a Composable is being recomposed.
7+
</p>
8+
</body>
9+
</html>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<html>
2+
<body>
3+
Adds the <code>@TraceRecomposition</code> annotation to a Composable function to track recomposition events at runtime.
4+
<p>
5+
This annotation enables logging of parameter changes and recomposition counts, helping you debug performance issues
6+
and understand why a Composable is being recomposed.
7+
</p>
8+
</body>
9+
</html>

0 commit comments

Comments
 (0)