Skip to content

Commit

Permalink
Add a widget to denote that a portion of the app is under construction
Browse files Browse the repository at this point in the history
  • Loading branch information
patelneel55 committed Jan 14, 2021
1 parent 5eaa230 commit 951f786
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
24 changes: 24 additions & 0 deletions frontend/memoree_client/lib/app/widgets/wip.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';

class WIP extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
child: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.handyman,
size: 100
),
SizedBox(
height: 15,
),
Text("Construction in progress. Please come back later."),
],
),
),
);
}
}
2 changes: 1 addition & 1 deletion frontend/memoree_client/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages:
source: hosted
version: "1.6.0"
async:
dependency: transitive
dependency: "direct main"
description:
name: async
url: "https://pub.dartlang.org"
Expand Down
1 change: 1 addition & 0 deletions frontend/memoree_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ environment:
dependencies:
flutter:
sdk: flutter
async: ^2.4.2
cloud_functions: ^0.7.2
cupertino_icons: ^1.0.0
easy_web_view: ^1.3.1
Expand Down

0 comments on commit 951f786

Please sign in to comment.