Skip to content

Commit

Permalink
Added all Screens
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyamX64 committed May 26, 2020
1 parent c26a18e commit d0be647
Show file tree
Hide file tree
Showing 5 changed files with 377 additions and 158 deletions.
24 changes: 24 additions & 0 deletions lib/Organizations.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
import 'package:gitoo/Constants.dart';

class Organizations extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: AppBar(
title: Text('Organizations'),
backgroundColor: kPrimary,
),
body: Container(
color: kSecondary,
alignment: AlignmentDirectional.center,
child: Text(
'Bhai ko abhi kahi Kaam nahi mila',
style: TextStyle(color: Colors.white),
),
),
),
);
}
}
Loading

0 comments on commit d0be647

Please sign in to comment.