Skip to content

Commit

Permalink
コンフリクト処理
Browse files Browse the repository at this point in the history
  • Loading branch information
azuma502 committed Mar 8, 2024
2 parents fdab6b5 + b7f0060 commit cd79169
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: subosito/[email protected]
with:
flutter-version: '3.7.7'
flutter-version: '3.16.9'
- name: Install dependencies and analyze project source
run: |
for d in */ ; do
Expand Down
46 changes: 0 additions & 46 deletions qiita_app/lib/pages/setting_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class _SettingsPageState extends State<SettingsPage> {
title: "Settings",
showSearchBar: false,
showBottomDivider: true,
// dividerHeight: 4.2,
),
body: ListView(
children: [
Expand Down Expand Up @@ -107,48 +106,3 @@ class _SettingsPageState extends State<SettingsPage> {
);
}
}
// class _SettingPageState extends State<SettingPage> {
// @override
// Widget build(BuildContext context) {
// return Scaffold(
// body: Center(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: [
// RoundedEdgeButton(
// text: "プライバシーポリシー",
// backgroundColor: AppColors.primary,
// onPressed: () {
// showAppBottomModalSheet(
// context,
// title: "プライバシーポリシー",
// content: const Text(
// Texts.privacyPolicyText,
// style: AppTextStyles.h2BasicBlack,
// ),
// );
// },
// ),
// const SizedBox(
// height: 42,
// ),
// RoundedEdgeButton(
// text: "利用規約",
// backgroundColor: AppColors.primary,
// onPressed: () {
// showAppBottomModalSheet(
// context,
// title: "利用規約",
// content: const Text(
// Texts.termsService,
// style: AppTextStyles.h3BasicBlack,
// ),
// );
// },
// ),
// ],
// ),
// ),
// );
// }
// }
2 changes: 1 addition & 1 deletion qiita_app/lib/widgets/app_title.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class AppTitle extends StatelessWidget implements PreferredSizeWidget {
Key? key,
required this.title,
this.style,
this.backgroundColor = AppColors.background,
this.backgroundColor = AppColors.white,
this.dividerHeight = 1.0,
this.showBottomDivider = true,
this.showSearchBar = false,
Expand Down
3 changes: 2 additions & 1 deletion qiita_app/lib/widgets/bottom_navigation.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:qiita_app/constants/app_colors.dart';
import 'package:qiita_app/pages/feed_page.dart';
import 'package:qiita_app/pages/setting_page.dart';
Expand Down Expand Up @@ -35,6 +35,7 @@ class _BottomNavigationState extends State<BottomNavigation> {
return Scaffold(
body: Center(child: _widgetOptions.elementAt(_selectedIndex)),
bottomNavigationBar: BottomNavigationBar(
backgroundColor: AppColors.white,
items: const [
BottomNavigationBarItem(
icon: Icon(Icons.list),
Expand Down
5 changes: 3 additions & 2 deletions qiita_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ dependencies:


cupertino_icons: ^1.0.6
package_info_plus: ^4.2.0
http: ^1.1.0
intl: ^0.17.0
modal_bottom_sheet: ^2.1.2


dev_dependencies:
flutter_test:
sdk: flutter


flutter_lints: ^2.0.0

Expand Down

0 comments on commit cd79169

Please sign in to comment.