Compare commits

..

No commits in common. "8687bbb86ab65306b33f27c1f5b87f4f3b4e7893" and "8ebc6e1928e0940b53bca9b9495f3da12a03025d" have entirely different histories.

3 changed files with 0 additions and 70 deletions

View File

@ -1,45 +0,0 @@
import 'package:flutter/material.dart';
class AboutScreen extends StatelessWidget {
const AboutScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('关于'),
),
body: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'伴享',
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
),
),
SizedBox(height: 16),
Text(
'当前版本: 1.1.9+11',
style: TextStyle(
fontSize: 16,
color: Colors.grey,
),
),
SizedBox(height: 16),
Padding(
padding: EdgeInsets.symmetric(horizontal: 32),
child: Text(
'伴享 — 专为银发族打造的社交平台',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 16),
),
),
],
),
),
);
}
}

View File

@ -3,7 +3,6 @@ import 'dart:io';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart'; import 'package:shared_preferences/shared_preferences.dart';
import 'about_screen.dart';
import 'profile_setup_screen.dart'; import 'profile_setup_screen.dart';
class ProfileScreen extends StatefulWidget { class ProfileScreen extends StatefulWidget {
@ -128,17 +127,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
), ),
), ),
), ),
//
ListTile(
leading: const Icon(Icons.info_outline),
title: const Text('关于'),
trailing: const Icon(Icons.chevron_right),
onTap: () {
Navigator.of(context).push(
MaterialPageRoute(builder: (_) => const AboutScreen()),
);
},
),
Padding( Padding(
padding: const EdgeInsets.fromLTRB(24, 0, 24, 24), padding: const EdgeInsets.fromLTRB(24, 0, 24, 24),
child: SizedBox( child: SizedBox(

View File

@ -1,13 +0,0 @@
#!/bin/bash
# 读取 pubspec.yaml 中的 version 字段
VERSION=$(grep "^version:" pubspec.yaml | sed 's/version: *//' | tr -d ' ')
# 检查 version 格式是否符合 x.x.x+x用正则
if [[ ! $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+\+[0-9]+$ ]]; then
echo "错误: version 格式不符合 x.x.x+x"
exit 1
fi
# 输出格式:当前版本: x.x.x+x
echo "当前版本: $VERSION"