Commit a3a5aba6 by Aleksandr

fix some errors

parent 243a655b
...@@ -33,6 +33,22 @@ ...@@ -33,6 +33,22 @@
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="application/pdf" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="application/pdf" />
</intent-filter>
</activity> </activity>
......
...@@ -137,8 +137,8 @@ private fun ColumnScope.SpotInfoComponent( ...@@ -137,8 +137,8 @@ private fun ColumnScope.SpotInfoComponent(
.fillMaxWidth() .fillMaxWidth()
.padding(vertical = 24.dp) .padding(vertical = 24.dp)
.weight(1f), .weight(1f),
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp, bottomStart = 0.dp, bottomEnd = 0.dp), shape = RoundedCornerShape(16.dp),
elevation = CardDefaults.cardElevation(defaultElevation = 12.dp) elevation = CardDefaults.cardElevation(defaultElevation = 4.dp)
) { ) {
TPMapComponent( TPMapComponent(
modifier = Modifier, modifier = Modifier,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment