審査用に文言などを修正 ver.4.5.1 467
This commit is contained in:
@ -3,6 +3,7 @@ import 'dart:io';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:rogapp/model/destination.dart';
|
||||
import 'package:rogapp/utils/database_helper.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class HistoryPage extends StatefulWidget {
|
||||
const HistoryPage({super.key});
|
||||
@ -18,7 +19,7 @@ class _HistoryPageState extends State<HistoryPage> {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text("通過履歴"),
|
||||
title: Text("pass_history".tr),
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
child: Column(
|
||||
@ -68,7 +69,7 @@ class _HistoryPageState extends State<HistoryPage> {
|
||||
);
|
||||
}));
|
||||
} else {
|
||||
return const Center(child: Text("No checkin yet"));
|
||||
return Center(child: Text("no_checkin_yet".tr));
|
||||
}
|
||||
}
|
||||
} else if (snapshot.connectionState ==
|
||||
|
||||
Reference in New Issue
Block a user