@@ -51,7 +51,7 @@ class _UpdateCheckState extends State<UpdateCheck> {
5151 Divider (),
5252 ListTile (
5353 onTap: this .checkVersion,
54- title: Text ("Check for Update " ),
54+ title: Text ("Check for update " ),
5555 subtitle: Text ("This action will use github api to check new releases" , style: Theme .of (context).textTheme.caption),
5656 ),
5757 Divider (),
@@ -73,29 +73,33 @@ class _UpdateCheckState extends State<UpdateCheck> {
7373 });
7474 },
7575 ),
76- subtitle: Text (
77- "Show notification when new update released.\n "
78- "note: app will only check updates every start up" ,
79- style: Theme .of (context).textTheme.caption),
76+ subtitle: Padding (
77+ padding: const EdgeInsets .only (top: 8 ),
78+ child: Text (
79+ "Show notification when new update released.\n "
80+ "note: The app will check updates during the startup" ,
81+ style: Theme .of (context).textTheme.caption),
82+ ),
8083 ),
8184 Divider (),
8285 ListTile (
8386 onTap: () async {
8487 await SystemChannel ().openURL ("https://github.com/InvertedX/sentinelx" );
8588 },
8689 title: Text (
87- "Open Github Repo " ,
90+ "Open Github repo " ,
8891 style: Theme .of (context).textTheme.subhead,
8992 ),
9093 subtitle: Text ("github.com/InvertedX/sentinelx" , style: Theme .of (context).textTheme.caption),
9194 ),
95+ Divider (),
9296 (changeLog.isNotEmpty && downloadAssets.length == 0 )
9397 ? ListTile (
9498 onTap: () async {
9599 this .showChangeLog (version);
96100 },
97101 title: Text (
98- "Show Change Log " ,
102+ "Show current change log " ,
99103 style: Theme .of (context).textTheme.subhead,
100104 ),
101105 subtitle: Text ("View current change log" , style: Theme .of (context).textTheme.caption),
0 commit comments