Make export dialog buttons equal size

- Change both Share and Save to Device buttons to use ActionStyle.NONE
- This creates two equal-sized buttons side by side instead of primary/secondary styling
- Improves UI consistency and makes both options equally prominent
- Users can now easily choose between sharing or saving without visual hierarchy bias
This commit is contained in:
Trevor
2025-08-20 10:49:22 -05:00
parent 8916fd35ab
commit f00e71522f
@@ -296,7 +296,7 @@ class PolycentricBackupActivity : AppCompatActivity() {
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
}
startActivity(Intent.createChooser(shareIntent, getString(R.string.share_profile)))
}, UIDialogs.ActionStyle.PRIMARY),
}, UIDialogs.ActionStyle.NONE),
UIDialogs.Action(getString(R.string.save_to_device), {
// Save to device
saveToDevice(fileName)