Skip to content

Commit 2f02e9a

Browse files
committed
chore: format sample app
1 parent 088b2de commit 2f02e9a

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

sample_app/lib/firebase_options.dart

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ class DefaultFirebaseOptions {
7070
projectId: 'stream-chat-internal',
7171
databaseURL: 'https://stream-chat-internal.firebaseio.com',
7272
storageBucket: 'stream-chat-internal.appspot.com',
73-
androidClientId: '674907137625-2scfo9a5cs074dced5vhm712ej6hhtpm.apps.googleusercontent.com',
74-
iosClientId: '674907137625-flarfn9cefu4lermgpbc4b8rm8l15ian.apps.googleusercontent.com',
73+
androidClientId:
74+
'674907137625-2scfo9a5cs074dced5vhm712ej6hhtpm.apps.googleusercontent.com',
75+
iosClientId:
76+
'674907137625-flarfn9cefu4lermgpbc4b8rm8l15ian.apps.googleusercontent.com',
7577
iosBundleId: 'io.getstream.flutter',
7678
);
7779

@@ -82,8 +84,10 @@ class DefaultFirebaseOptions {
8284
projectId: 'stream-chat-internal',
8385
databaseURL: 'https://stream-chat-internal.firebaseio.com',
8486
storageBucket: 'stream-chat-internal.appspot.com',
85-
androidClientId: '674907137625-2scfo9a5cs074dced5vhm712ej6hhtpm.apps.googleusercontent.com',
86-
iosClientId: '674907137625-p3msks3snq0h22l7ekpqcf0frr0vt8mg.apps.googleusercontent.com',
87+
androidClientId:
88+
'674907137625-2scfo9a5cs074dced5vhm712ej6hhtpm.apps.googleusercontent.com',
89+
iosClientId:
90+
'674907137625-p3msks3snq0h22l7ekpqcf0frr0vt8mg.apps.googleusercontent.com',
8791
iosBundleId: 'io.getstream.streamChatV1',
8892
);
8993
}

sample_app/lib/pages/channel_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import 'package:sample_app/routes/routes.dart';
88
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
99

1010
class ChannelPage extends StatefulWidget {
11-
1211
const ChannelPage({
1312
super.key,
1413
this.initialScrollIndex,

sample_app/lib/pages/thread_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import 'package:flutter/material.dart';
22
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
33

44
class ThreadPage extends StatefulWidget {
5-
65
const ThreadPage({
76
super.key,
87
required this.parent,

sample_app/lib/routes/routes.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ abstract class Routes {
2525
}
2626

2727
class RouteConfig {
28-
2928
const RouteConfig({required this.name, required this.path});
3029
final String name;
3130
final String path;

sample_app/lib/utils/local_notification_observer.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import 'package:sample_app/utils/notifications_service.dart' as pn;
66
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
77

88
class LocalNotificationObserver extends NavigatorObserver {
9-
109
LocalNotificationObserver(
1110
StreamChatClient client,
1211
GlobalKey<NavigatorState> navigatorKey,

sample_app/lib/utils/localizations.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import 'package:flutter/foundation.dart';
22
import 'package:flutter/material.dart';
33

44
class AppLocalizations {
5-
65
AppLocalizations(this.locale);
76
static const _localizedValues = <String, Map<String, String>>{
87
'en': {

0 commit comments

Comments
 (0)