修改老版本无法登录的问题

This commit is contained in:
jyuesong
2022-01-21 10:30:57 +08:00
parent 2932ad3a64
commit abc6130940
7 changed files with 152 additions and 119 deletions

View File

@@ -66,6 +66,21 @@ class _AboutPageState extends ConsumerState<AboutPage> {
fontSize: 16,
),
),
const SizedBox(
height: 15,
),
GestureDetector(
onTap: () {
_launchURL("https://t.me/qinglongapp");
},
child: Text(
"Telegram频道",
style: TextStyle(
color: primaryColor,
fontSize: 16,
),
),
),
const Spacer(),
Row(
children: [

View File

@@ -367,6 +367,9 @@ class _OtherPageState extends ConsumerState<OtherPage> {
}),
),
),
const SizedBox(
height: 30,
),
],
),
);