Skip to content

Commit

Permalink
chore: unignore pubspeck.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinzent03 committed Feb 2, 2022
1 parent 031a41f commit 84e9b22
Show file tree
Hide file tree
Showing 5 changed files with 678 additions and 18 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
.pub-cache/
.pub/
/build/
pubspec.lock

# Web related
lib/generated_plugin_registrant.dart
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion lib/authentication/login_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class LogInPage extends StatelessWidget {
const LogInPage({Key key, @required this.authType}) : super(key: key);

Widget build(BuildContext context) {
print(authType);
return Scaffold(
appBar: AppBar(
title: Text(
Expand Down
5 changes: 1 addition & 4 deletions lib/main/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,7 @@ class _HomeState extends State<Home> {
);
}

void swapPage(int index) {
print(index);
setState(() => currentIndex = index);
}
void swapPage(int index) => setState(() => currentIndex = index);

void showFriendsPageOptionsBottomSheet(context) => showModalBottomSheet(
context: context,
Expand Down
Loading

0 comments on commit 84e9b22

Please sign in to comment.