File tree Expand file tree Collapse file tree
app/src/main/java/me/bmax/apatch/ui/screen Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,15 +101,33 @@ fun AboutScreen(navigator: DestinationsNavigator) {
101101
102102 Spacer (modifier = Modifier .height(20 .dp))
103103
104- FilledTonalButton (
105- onClick = { uriHandler.openUri(" https://github.com/matsuzaka-yuki/APatch-Ultra" ) }
104+ Row (
105+ modifier = Modifier .fillMaxWidth(),
106+ horizontalArrangement = Arrangement .Center
106107 ) {
107- Icon (
108- painter = painterResource(id = R .drawable.github),
109- contentDescription = null
110- )
111- Spacer (modifier = Modifier .width(ButtonDefaults .IconSpacing ))
112- Text (text = stringResource(id = R .string.about_github))
108+ FilledTonalButton (
109+ onClick = { uriHandler.openUri(" https://github.com/matsuzaka-yuki/APatch-Ultra" ) }
110+ ) {
111+ Icon (
112+ painter = painterResource(id = R .drawable.github),
113+ contentDescription = null
114+ )
115+ Spacer (modifier = Modifier .width(ButtonDefaults .IconSpacing ))
116+ Text (text = stringResource(id = R .string.about_github))
117+ }
118+
119+ Spacer (modifier = Modifier .width(10 .dp))
120+
121+ FilledTonalButton (
122+ onClick = { uriHandler.openUri(" https://t.me/APatchUltra" ) }
123+ ) {
124+ Icon (
125+ painter = painterResource(id = R .drawable.telegram),
126+ contentDescription = null
127+ )
128+ Spacer (modifier = Modifier .width(ButtonDefaults .IconSpacing ))
129+ Text (text = stringResource(id = R .string.about_telegram_channel))
130+ }
113131 }
114132
115133 OutlinedCard (
You can’t perform that action at this time.
0 commit comments