2024-09-02 ほぼOK

This commit is contained in:
2024-09-02 21:25:19 +09:00
parent dc58dc0584
commit fe46d46ab6
59 changed files with 2006 additions and 677 deletions

View File

@ -119,8 +119,7 @@ class _LoginPageState extends State<LoginPage> {
body: GestureDetector(
onTap: () => FocusScope.of(context).unfocus(),
child: indexController.currentUser.isEmpty
? SizedBox(
width: double.infinity,
? SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
@ -216,8 +215,8 @@ class _LoginPageState extends State<LoginPage> {
true;
indexController.login(
emailController.text,
passwordController.text,
context);
passwordController.text
);
},
color: Colors.indigoAccent[400],
shape: RoundedRectangleBorder(
@ -271,37 +270,34 @@ class _LoginPageState extends State<LoginPage> {
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: Padding(
padding: const EdgeInsets.all(8.0),
Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
Expanded(
child: Text(
"app_developed_by_gifu_dx".tr,
style: const TextStyle(
overflow: TextOverflow.ellipsis,
fontSize: 10.0),
style: const TextStyle(fontSize: 10.0),
textAlign: TextAlign.center,
),
),
),
],
],
),
),
const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: Padding(
padding: EdgeInsets.all(8.0),
Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
Expanded(
child: Text(
"※第8回と第9回は、岐阜県の令和年度「清流の国ぎふ」SDGs推進ネットワーク連携促進補助金を受けています",
style: TextStyle(
fontSize: 10.0,
),
style: const TextStyle(fontSize: 10.0),
textAlign: TextAlign.center,
),
),
),
],
],
),
),
],
),