Skip to content

Commit 60be963

Browse files
committedNov 7, 2019
Made README links relative and removed unused/dupes.
Change-Id: I76650ae69131f906eb735151565c5f4d967be2fe
1 parent 26442cd commit 60be963

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed
 

‎JetNews/README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@ Package [`com.example.jetnews.ui`][1]
2727
[`JetnewsApp.kt`][2] arranges the different screens in the `NavDrawerLayout`. It also implements a simple
2828
navigation pattern.
2929

30-
[1]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui
31-
[2]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/JetnewsApp.kt
32-
[3]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/article
30+
[1]: app/src/main/java/com/example/jetnews/ui
31+
[2]: app/src/main/java/com/example/jetnews/ui/JetnewsApp.kt
3332

3433
### Main article list
3534

36-
Package [`com.example.jetnews.ui.home`][4]
35+
Package [`com.example.jetnews.ui.home`][3]
3736

3837
This screen shows how to create different custom Composable functions and combine them in a list
3938
that scrolls vertically and horizontally.
@@ -46,31 +45,31 @@ See how to:
4645
* Use `Shape` to round the corners of the images
4746
* Use elevation to make the `Card`s stand out from the background
4847

49-
[4]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/home
48+
[3]: app/src/main/java/com/example/jetnews/ui/home
5049

5150
### Article detail
5251

53-
Package [`com.example.jetnews.ui.article`][5]
52+
Package [`com.example.jetnews.ui.article`][4]
5453

5554
This screen dives into the Text API, showing how to use different fonts than the ones defined in
56-
[`Typograhy`][6]. It also adds a bottom appbar, with custom actions.
55+
[`Typograhy`][5]. It also adds a bottom appbar, with custom actions.
5756

58-
[5]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/article
59-
[6]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/Typography.kt
57+
[4]: app/src/main/java/com/example/jetnews/ui/article
58+
[5]: app/src/main/java/com/example/jetnews/ui/Typography.kt
6059

6160
### Interests screen
6261

63-
Package [`com.example.jetnews.ui.interests`][7]
62+
Package [`com.example.jetnews.ui.interests`][6]
6463

6564
This screens shows how to use Tabs and switch content depending on the selected tab. It
66-
also includes a custom checkbox button, [SelectTopicButton][8]
65+
also includes a custom checkbox button, [SelectTopicButton][7]
6766
that uses a `Toggleable` composable function to provide
6867
the on/off behaviour and semantics, while drawing a custom UI. The UI of the button is partly
6968
drawn with low-level primitives and partly overlaying images. See also how to visualize
7069
on and off, light and dark version in the Android Studio Preview.
7170

72-
[7]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/interests
73-
[8]: https://github.com/android/compose-samples/tree/master/JetNews/app/src/main/java/com/example/jetnews/ui/interests/SelectTopicButton.kt
71+
[6]: app/src/main/java/com/example/jetnews/ui/interests
72+
[7]: app/src/main/java/com/example/jetnews/ui/interests/SelectTopicButton.kt
7473

7574
### Data
7675

0 commit comments

Comments
 (0)
Please sign in to comment.