Skip to content

feature: implement policies page for user account creation (TCS-15) #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 7 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,12 @@ windows/


# Generated Files
pubspec.lock
pubspec.lock

android/app/.cxx/
ios/Runner.xcodeproj/xcshareddata/xcschemes/
**/firebase_app_id_file.json
**/.dart_tool/
ios/Flutter/flutter_export_environment.sh
**/.gradle/
.env
3 changes: 3 additions & 0 deletions devtools_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
description: This file stores settings for Dart & Flutter DevTools.
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
extensions:
98 changes: 0 additions & 98 deletions ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

This file was deleted.

4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:traces/pages/authentication/authentication.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:traces/pages/home/layouts/layout.dart';

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
Expand All @@ -15,15 +16,14 @@ class RootWidget extends StatefulWidget {
State<RootWidget> createState() => _RootWidgetState();
}

// This widget is the root of the application.
class _RootWidgetState extends State<RootWidget> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Traces',
theme: ThemeData.dark(),
home: const AuthenticationPage(),
home: const BaseLayout(),
);
}
}
Loading
Loading