Add a note on self-hosted instances of sources (#1342)

This commit is contained in:
Imran Remtulla
2024-01-27 21:26:32 -05:00
parent 5a8efa2388
commit 6ef2a26e94
19 changed files with 50 additions and 1 deletions

View File

@@ -530,7 +530,20 @@ class AddAppPageState extends State<AddAppPage> {
? TextDecoration.underline
: TextDecoration.none),
))),
)
),
const SizedBox(
height: 16,
),
Text(
'${tr('note')}:',
style:
const TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(
height: 4,
),
Text(tr('selfHostedNote',
args: [tr('overrideSource')])),
],
);
},