Skip to content

Commit

Permalink
style: dart fix apply
Browse files Browse the repository at this point in the history
  • Loading branch information
kosukesaigusa committed Sep 21, 2023
1 parent 4ebaceb commit 7c81cdd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class SignInButtonBuilder extends StatelessWidget {
separator!,
SizedBox(
width: separatorSpaceRight,
)
),
],
Text(
text,
Expand Down
2 changes: 1 addition & 1 deletion packages/mottai_flutter_app/lib/chat/chat_room.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class ChatRoomStateNotifier extends StateNotifier<ChatRoomState> {
state = state.copyWith(
readChatMessages: [
...state.newReadChatMessages,
...state.pastReadChatMessages
...state.pastReadChatMessages,
],
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class DisableUserAccountRequestController {
Navigator.pop(context);
},
child: const Text('戻る'),
)
),
],
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class _FirebaseStorageSampleState
else
const Center(
child: Text('未アップロード'),
)
),
],
),
);
Expand Down
4 changes: 2 additions & 2 deletions packages/mottai_flutter_app/lib/host/ui/host_form.dart
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class HostFormState extends ConsumerState<HostForm> {
color: Theme.of(context).colorScheme.error,
),
),
)
),
],
),
),
Expand Down Expand Up @@ -578,7 +578,7 @@ class _TextInputSection<T extends dynamic> extends StatelessWidget {
],
if (child != null) ...[
child!,
]
],
],
),
);
Expand Down
2 changes: 1 addition & 1 deletion packages/mottai_flutter_app/lib/map/ui/map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class MapPageState extends ConsumerState<MapPage> {
);
},
icon: const Icon(Icons.near_me),
)
),
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion packages/mottai_flutter_app/lib/root/ui/root.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class _DrawerChild extends ConsumerWidget {
leading: const Icon(Icons.login),
title: const Text('サインイン(ソーシャル)'),
onTap: () => context.router.pushNamed(SignInSamplePage.location),
)
),
],
ListTile(
leading: const Icon(Icons.notifications),
Expand Down
2 changes: 1 addition & 1 deletion packages/mottai_flutter_app/lib/user/ui/user_mode.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class UserModeSection extends ConsumerWidget {
.read(userModeStateProvider.notifier)
.update((_) => newSelection.first);
},
)
),
],
);
},
Expand Down
2 changes: 1 addition & 1 deletion packages/mottai_flutter_app/test/todo/ui/todos_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void main() {
await tester.pumpWidget(
ProviderScope(
overrides: [
todoRepositoryProvider.overrideWithValue(mockTodoRepository)
todoRepositoryProvider.overrideWithValue(mockTodoRepository),
],
child: const _TodosPage(),
),
Expand Down

0 comments on commit 7c81cdd

Please sign in to comment.