feat: add privacy policy to register and profile screen
This commit is contained in:
parent
ab3d0e9c15
commit
1e573904f2
32 changed files with 817 additions and 103 deletions
|
|
@ -1,3 +1,5 @@
|
|||
import 'dart:developer';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
|
@ -10,11 +12,11 @@ void main() async {
|
|||
|
||||
try {
|
||||
await dotenv.load(fileName: '.env');
|
||||
debugPrint('Environment loaded: ${dotenv.env['ENVIRONMENT']}');
|
||||
debugPrint('API URL: ${dotenv.env['API_BASE_URL']}');
|
||||
log('Environment loaded: ${dotenv.env['ENVIRONMENT']}');
|
||||
log('API URL: ${dotenv.env['API_BASE_URL']}');
|
||||
} catch (e) {
|
||||
debugPrint('Could not load .env file: $e');
|
||||
debugPrint('Using default production values');
|
||||
log('Could not load .env file: $e');
|
||||
log('Using default production values');
|
||||
}
|
||||
|
||||
await SystemChrome.setPreferredOrientations([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue