Compare commits
	
		
			5 Commits
		
	
	
		
			master
			...
			master-gen
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 1f39653594 | |||
| e9aad1cdf5 | |||
| 2c0ae00103 | |||
| 000f409052 | |||
| 64baa04a47 | 
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@ -44,5 +44,6 @@ app.*.map.json
 | 
			
		||||
/android/app/release
 | 
			
		||||
 | 
			
		||||
#generated files
 | 
			
		||||
lib/**/*.g.dart
 | 
			
		||||
# lib/**/*.g.dart
 | 
			
		||||
.direnv/
 | 
			
		||||
*.tar.gz
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								.ignore
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								.ignore
									
									
									
									
									
								
							@ -5,4 +5,4 @@ linux
 | 
			
		||||
.metadata
 | 
			
		||||
analysis_options.yaml
 | 
			
		||||
pubspec.lock
 | 
			
		||||
// lib/**/*.g.dart
 | 
			
		||||
lib/**/*.g.dart
 | 
			
		||||
 | 
			
		||||
@ -44,7 +44,7 @@ android {
 | 
			
		||||
 | 
			
		||||
    defaultConfig {
 | 
			
		||||
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
 | 
			
		||||
        applicationId "com.example.rluv"
 | 
			
		||||
        applicationId "com.fosscat.rluv"
 | 
			
		||||
        // You can update the following values to match your application needs.
 | 
			
		||||
        // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
 | 
			
		||||
        minSdkVersion flutter.minSdkVersion
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    package="com.example.rluv">
 | 
			
		||||
    package="com.fosscat.rluv">
 | 
			
		||||
    <!-- The INTERNET permission is required for development. Specifically,
 | 
			
		||||
         the Flutter tool needs it to communicate with the running application
 | 
			
		||||
         to allow setting breakpoints, to provide hot reload, etc.
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    package="com.example.rluv">
 | 
			
		||||
    package="com.fosscat.rluv">
 | 
			
		||||
    <uses-permission android:name="android.permission.INTERNET"/>
 | 
			
		||||
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
 | 
			
		||||
    <application
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
package com.example.rluv
 | 
			
		||||
package com.fosscat.rluv
 | 
			
		||||
 | 
			
		||||
import io.flutter.embedding.android.FlutterActivity
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    package="com.example.rluv">
 | 
			
		||||
    package="com.fosscat.rluv">
 | 
			
		||||
    <!-- The INTERNET permission is required for development. Specifically,
 | 
			
		||||
         the Flutter tool needs it to communicate with the running application
 | 
			
		||||
         to allow setting breakpoints, to provide hot reload, etc.
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								assets/app_icon512.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								assets/app_icon512.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 42 KiB  | 
							
								
								
									
										27
									
								
								build-flutter-app.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										27
									
								
								build-flutter-app.sh
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,27 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Build the Flutter app and package into an archive.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Exit if any command fails
 | 
			
		||||
set -e
 | 
			
		||||
 | 
			
		||||
# Echo all commands for debug purposes
 | 
			
		||||
set -x
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
projectName=rluvApp
 | 
			
		||||
archiveName=$projectName-Linux-Portable.tar.gz
 | 
			
		||||
baseDir=$(pwd)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# ----------------------------- Build Flutter app ---------------------------- #
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
flutter pub get
 | 
			
		||||
flutter build linux
 | 
			
		||||
 | 
			
		||||
cd build/linux/arm64/release/bundle || exit
 | 
			
		||||
tar -czaf $archiveName ./*
 | 
			
		||||
mv $archiveName "$baseDir"/
 | 
			
		||||
							
								
								
									
										6
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										6
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							@ -114,11 +114,11 @@
 | 
			
		||||
    },
 | 
			
		||||
    "nixpkgs_2": {
 | 
			
		||||
      "locked": {
 | 
			
		||||
        "lastModified": 1712608508,
 | 
			
		||||
        "narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=",
 | 
			
		||||
        "lastModified": 1716948383,
 | 
			
		||||
        "narHash": "sha256-SzDKxseEcHR5KzPXLwsemyTR/kaM9whxeiJohbL04rs=",
 | 
			
		||||
        "owner": "NixOS",
 | 
			
		||||
        "repo": "nixpkgs",
 | 
			
		||||
        "rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6",
 | 
			
		||||
        "rev": "ad57eef4ef0659193044870c731987a6df5cf56b",
 | 
			
		||||
        "type": "github"
 | 
			
		||||
      },
 | 
			
		||||
      "original": {
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										22
									
								
								flake.nix
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								flake.nix
									
									
									
									
									
								
							@ -32,21 +32,6 @@
 | 
			
		||||
            platforms-android-34
 | 
			
		||||
            emulator
 | 
			
		||||
          ]);
 | 
			
		||||
        # See below link for configuring ruby env with bundix
 | 
			
		||||
        # https://github.com/the-nix-way/nix-flake-dev-environments/tree/main/ruby-on-rails
 | 
			
		||||
        rubyEnv = pkgs.bundlerEnv {
 | 
			
		||||
          name = "ruby-env";
 | 
			
		||||
          inherit (pkgs) ruby;
 | 
			
		||||
          gemdir = ./android;
 | 
			
		||||
        };
 | 
			
		||||
        # buildNodeJs = pkgs.callPackage "${nixpkgs}/pkgs/development/web/nodejs/nodejs.nix" {
 | 
			
		||||
        #   python = pkgs.python3;
 | 
			
		||||
        # };
 | 
			
		||||
        # nodejs = buildNodeJs {
 | 
			
		||||
        #   enableNpm = true;
 | 
			
		||||
        #   version = "20.0.0";
 | 
			
		||||
        #   sha256 = "sha256-Q5xxqi84woYWV7+lOOmRkaVxJYBmy/1FSFhgScgTQZA=";
 | 
			
		||||
        # };
 | 
			
		||||
      in 
 | 
			
		||||
        pkgs.mkShell {
 | 
			
		||||
          # Fix an issue with Flutter using an older version of aapt2, which does not know
 | 
			
		||||
@ -60,13 +45,6 @@
 | 
			
		||||
            # pkg-config
 | 
			
		||||
            jdk17
 | 
			
		||||
            android-sdk
 | 
			
		||||
            rubyEnv
 | 
			
		||||
            rubyEnv.wrappedRuby
 | 
			
		||||
            # fastlane
 | 
			
		||||
            bundix
 | 
			
		||||
            # gems
 | 
			
		||||
            firebase-tools
 | 
			
		||||
            # nodejs
 | 
			
		||||
          ];
 | 
			
		||||
          shellHook = ''
 | 
			
		||||
            export PATH="$PATH":"$HOME/.pub-cache/bin" 
 | 
			
		||||
 | 
			
		||||
@ -296,7 +296,7 @@
 | 
			
		||||
					"$(inherited)",
 | 
			
		||||
					"@executable_path/Frameworks",
 | 
			
		||||
				);
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.example.rluv;
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.fosscat.rluv;
 | 
			
		||||
				PRODUCT_NAME = "$(TARGET_NAME)";
 | 
			
		||||
				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
 | 
			
		||||
				SWIFT_VERSION = 5.0;
 | 
			
		||||
@ -424,7 +424,7 @@
 | 
			
		||||
					"$(inherited)",
 | 
			
		||||
					"@executable_path/Frameworks",
 | 
			
		||||
				);
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.example.rluv;
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.fosscat.rluv;
 | 
			
		||||
				PRODUCT_NAME = "$(TARGET_NAME)";
 | 
			
		||||
				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
 | 
			
		||||
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
 | 
			
		||||
@ -446,7 +446,7 @@
 | 
			
		||||
					"$(inherited)",
 | 
			
		||||
					"@executable_path/Frameworks",
 | 
			
		||||
				);
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.example.rluv;
 | 
			
		||||
				PRODUCT_BUNDLE_IDENTIFIER = com.fosscat.rluv;
 | 
			
		||||
				PRODUCT_NAME = "$(TARGET_NAME)";
 | 
			
		||||
				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
 | 
			
		||||
				SWIFT_VERSION = 5.0;
 | 
			
		||||
 | 
			
		||||
@ -5,7 +5,7 @@
 | 
			
		||||
	<key>CFBundleDevelopmentRegion</key>
 | 
			
		||||
	<string>$(DEVELOPMENT_LANGUAGE)</string>
 | 
			
		||||
	<key>CFBundleDisplayName</key>
 | 
			
		||||
	<string>Rluv</string>
 | 
			
		||||
	<string>rluv</string>
 | 
			
		||||
	<key>CFBundleExecutable</key>
 | 
			
		||||
	<string>$(EXECUTABLE_NAME)</string>
 | 
			
		||||
	<key>CFBundleIdentifier</key>
 | 
			
		||||
@ -13,7 +13,7 @@
 | 
			
		||||
	<key>CFBundleInfoDictionaryVersion</key>
 | 
			
		||||
	<string>6.0</string>
 | 
			
		||||
	<key>CFBundleName</key>
 | 
			
		||||
	<string>rluv</string>
 | 
			
		||||
	<string>fosscatrluv</string>
 | 
			
		||||
	<key>CFBundlePackageType</key>
 | 
			
		||||
	<string>APPL</string>
 | 
			
		||||
	<key>CFBundleShortVersionString</key>
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
 | 
			
		||||
@ -17,7 +18,7 @@ class Login extends ConsumerStatefulWidget {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
class _LoginState extends ConsumerState<Login> {
 | 
			
		||||
  bool usingUsername = false;
 | 
			
		||||
  bool usingUsername = true;
 | 
			
		||||
  final emailController = TextEditingController();
 | 
			
		||||
  final usernameController = TextEditingController();
 | 
			
		||||
  final passwordController = TextEditingController();
 | 
			
		||||
@ -132,7 +133,7 @@ class _LoginState extends ConsumerState<Login> {
 | 
			
		||||
                  text: 'Password: ',
 | 
			
		||||
                  validatorFunc: (s) {
 | 
			
		||||
                    if (s != null && s.length < 6) {
 | 
			
		||||
                      return 'Please do a better password (you have to)';
 | 
			
		||||
                      return 'Please do a better password, at least 6 characters (you have to)';
 | 
			
		||||
                    }
 | 
			
		||||
                    return null;
 | 
			
		||||
                  },
 | 
			
		||||
@ -206,26 +207,18 @@ class _LoginState extends ConsumerState<Login> {
 | 
			
		||||
      if (widget.formKey.currentState != null && !widget.formKey.currentState!.validate()) {
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
      final data = await ref.read(apiProvider.notifier).post(path: 'auth/login', data: {
 | 
			
		||||
      final Map<String, dynamic>? data = await ref.read(apiProvider.notifier).post(path: 'auth/login', data: {
 | 
			
		||||
        'username': usernameController.text.isEmpty ? null : usernameController.text,
 | 
			
		||||
        'email': emailController.text.isEmpty ? null : emailController.text,
 | 
			
		||||
        'password': passwordController.text,
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      String message = 'Login unsuccessful';
 | 
			
		||||
      bool success = data?['success'] == 'false';
 | 
			
		||||
      if (data != null) {
 | 
			
		||||
        if (data['message'] != null) {
 | 
			
		||||
          message = data['message'];
 | 
			
		||||
        } else if (success) {
 | 
			
		||||
          message = 'Logged in!';
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      // final bool success = data?['success'] ?? false;
 | 
			
		||||
      print(data);
 | 
			
		||||
      showSnack(ref: ref, text: message, type: !success ? SnackType.error : SnackType.success);
 | 
			
		||||
      bool success = data?['success'] ?? false;
 | 
			
		||||
      String message = data?['message'] ?? (success ? 'Login success!' : 'Login unsuccessful.');
 | 
			
		||||
      printColor(data, textColor: TextColor.yellow);
 | 
			
		||||
      showSnack(ref: ref, text: message, type: success ? SnackType.success : SnackType.error);
 | 
			
		||||
    } catch (err, st) {
 | 
			
		||||
      print('Error in login: $err\n$st');
 | 
			
		||||
      printColor('Error in login: $err\n$st', textColor: TextColor.red);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
 | 
			
		||||
@ -235,11 +236,11 @@ class _SignupState extends ConsumerState<Signup> {
 | 
			
		||||
          text: data?['message'] ?? success ? 'Login successful' : 'Login unsuccessful',
 | 
			
		||||
          type: !success ? SnackType.error : SnackType.success);
 | 
			
		||||
 | 
			
		||||
      print(data);
 | 
			
		||||
      printColor(data, textColor: TextColor.yellow);
 | 
			
		||||
      // final user = User.fromJson(data?['user']);
 | 
			
		||||
      // ref.read(tokenProvider.notifier).state =
 | 
			
		||||
    } catch (err) {
 | 
			
		||||
      print(err);
 | 
			
		||||
      printColor(err, textColor: TextColor.red);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -6,7 +6,6 @@ import 'package:rluv/features/budget/widgets/budget_category_bar.dart';
 | 
			
		||||
import 'package:rluv/features/budget/widgets/budget_net_bar.dart';
 | 
			
		||||
import 'package:rluv/global/styles.dart';
 | 
			
		||||
import 'package:rluv/global/utils.dart';
 | 
			
		||||
import 'package:rluv/models/budget_category_model.dart';
 | 
			
		||||
 | 
			
		||||
import '../../../global/store.dart';
 | 
			
		||||
import '../../../global/widgets/ui_button.dart';
 | 
			
		||||
@ -134,8 +133,8 @@ class _BudgetOverviewScreenState extends ConsumerState<BudgetOverviewScreen> {
 | 
			
		||||
                                          controller: budgetListScrollController,
 | 
			
		||||
                                          shrinkWrap: true,
 | 
			
		||||
                                          children: [
 | 
			
		||||
                                            ...budgetCategories.map((BudgetCategory category) {
 | 
			
		||||
                                              final i = budgetCategories.indexOf(category);
 | 
			
		||||
                                            ...budgetCategories.map((category) {
 | 
			
		||||
                                              final int i = budgetCategories.indexOf(category);
 | 
			
		||||
                                              return BudgetCategoryBar(
 | 
			
		||||
                                                budgetCategory: category,
 | 
			
		||||
                                                currentAmount: budgetCategoryNetMap[category.id]!,
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
import 'package:rluv/global/styles.dart';
 | 
			
		||||
@ -156,7 +157,7 @@ class _AddBudgetCategoryDialogState extends ConsumerState<BudgetCategoryDialog>
 | 
			
		||||
                              } else {
 | 
			
		||||
                                setState(() => selectedColorIndex = -1);
 | 
			
		||||
                              }
 | 
			
		||||
                              print(selectedColorIndex);
 | 
			
		||||
                              printColor(selectedColorIndex, textColor: TextColor.blue);
 | 
			
		||||
                            },
 | 
			
		||||
                            child: Padding(
 | 
			
		||||
                              padding: const EdgeInsets.all(8.0),
 | 
			
		||||
@ -269,7 +270,7 @@ class _AddBudgetCategoryDialogState extends ConsumerState<BudgetCategoryDialog>
 | 
			
		||||
 | 
			
		||||
  Future submitCategory(Color categoryColor) async {
 | 
			
		||||
    if (formKey.currentState != null && !formKey.currentState!.validate()) {
 | 
			
		||||
      print('Failed validation');
 | 
			
		||||
      printColor('Failed validation', textColor: TextColor.red);
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    Map<String, dynamic>? budgetData;
 | 
			
		||||
 | 
			
		||||
@ -249,9 +249,7 @@ class _AddTransactionDialogState extends ConsumerState<TransactionDialog> {
 | 
			
		||||
                      text: 'ADD',
 | 
			
		||||
                      color: Styles.lavender,
 | 
			
		||||
                      onPressed: () => submitTransaction().then((_) {
 | 
			
		||||
                        if (mounted) {
 | 
			
		||||
                          Navigator.pop(context);
 | 
			
		||||
                        }
 | 
			
		||||
                        Navigator.pop(context);
 | 
			
		||||
                        showSnack(
 | 
			
		||||
                          ref: ref,
 | 
			
		||||
                          text: widget.transaction != null ? 'Transaction updated!' : 'Transaction added!',
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:dio/dio.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
@ -229,7 +230,7 @@ class _NoteBottomSheetState extends ConsumerState<NoteBottomSheet> {
 | 
			
		||||
                          }
 | 
			
		||||
                        } catch (err) {
 | 
			
		||||
                          showSnack(ref: ref, text: 'Unexpected error occurred', type: SnackType.error);
 | 
			
		||||
                          print(err);
 | 
			
		||||
                          printColor(err, textColor: TextColor.red);
 | 
			
		||||
                        }
 | 
			
		||||
                        // ignore: use_build_context_synchronously
 | 
			
		||||
                        Navigator.pop(context);
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,6 @@
 | 
			
		||||
import 'dart:convert';
 | 
			
		||||
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:dio/dio.dart';
 | 
			
		||||
import 'package:flutter/foundation.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
@ -10,7 +11,7 @@ import '../models/token.dart';
 | 
			
		||||
 | 
			
		||||
final tokenProvider = StateProvider<Token?>((ref) {
 | 
			
		||||
  final jwt = ref.watch(jwtProvider);
 | 
			
		||||
  print('Current token: $jwt');
 | 
			
		||||
  printColor('Current token: $jwt', textColor: TextColor.green);
 | 
			
		||||
  if (jwt == null) return null;
 | 
			
		||||
  try {
 | 
			
		||||
    return Token.fromJson(JwtDecoder.decode(jwt));
 | 
			
		||||
@ -36,12 +37,12 @@ class _JwtNotifier extends StateNotifier<String?> {
 | 
			
		||||
 | 
			
		||||
  void setToken(String jwt) {
 | 
			
		||||
    state = jwt;
 | 
			
		||||
    print('Loaded jwt into client: $jwt');
 | 
			
		||||
    printColor('Loaded jwt into client: $jwt', textColor: TextColor.cyan);
 | 
			
		||||
    ref.read(prefsProvider)?.setString('jwt', jwt);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  void revokeToken() {
 | 
			
		||||
    print('jwt token revoked');
 | 
			
		||||
    printColor('jwt token revoked', textColor: TextColor.cyan);
 | 
			
		||||
    state = null;
 | 
			
		||||
    ref.read(prefsProvider)?.remove('jwt');
 | 
			
		||||
  }
 | 
			
		||||
@ -79,7 +80,7 @@ class _ApiNotifier extends StateNotifier<Dio> {
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
            } catch (err) {
 | 
			
		||||
              print('Error in interceptor for token: $err');
 | 
			
		||||
              printColor('Error in interceptor for token: $err', textColor: TextColor.red);
 | 
			
		||||
              return handler.next(response);
 | 
			
		||||
            }
 | 
			
		||||
          }
 | 
			
		||||
@ -169,7 +170,7 @@ class _LoggingInterceptor extends Interceptor {
 | 
			
		||||
 | 
			
		||||
  @override
 | 
			
		||||
  void onError(DioException err, ErrorInterceptorHandler handler) {
 | 
			
		||||
    print('///*** ERROR RESPONSE ***\\\\\\');
 | 
			
		||||
    printColor('///*** ERROR RESPONSE ***\\\\\\', textColor: TextColor.red);
 | 
			
		||||
    logPrint('URI: ${err.requestOptions.uri}');
 | 
			
		||||
    if (err.response != null) {
 | 
			
		||||
      logPrint('STATUS CODE: ${err.response?.statusCode?.toString()}');
 | 
			
		||||
@ -197,7 +198,7 @@ class _LoggingInterceptor extends Interceptor {
 | 
			
		||||
 | 
			
		||||
  void printKV(String key, Object v) {
 | 
			
		||||
    if (kDebugMode) {
 | 
			
		||||
      print('$key: $v');
 | 
			
		||||
      printColor('$key: $v', textColor: TextColor.orange);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
@ -206,21 +207,21 @@ class _LoggingInterceptor extends Interceptor {
 | 
			
		||||
      final data = (s as Map<String, dynamic>?);
 | 
			
		||||
      if (kDebugMode) {
 | 
			
		||||
        if (data == null) {
 | 
			
		||||
          print({});
 | 
			
		||||
          printColor({}, textColor: TextColor.yellow);
 | 
			
		||||
          return;
 | 
			
		||||
        }
 | 
			
		||||
        JsonEncoder encoder = const JsonEncoder.withIndent('  ');
 | 
			
		||||
        String prettyprint = encoder.convert(s);
 | 
			
		||||
        print(prettyprint);
 | 
			
		||||
        printColor(prettyprint, textColor: TextColor.yellow);
 | 
			
		||||
      }
 | 
			
		||||
    } catch (_) {
 | 
			
		||||
      print(s);
 | 
			
		||||
      printColor(s, textColor: TextColor.yellow);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  void logPrint(String s) {
 | 
			
		||||
    if (kDebugMode) {
 | 
			
		||||
      print(s);
 | 
			
		||||
      printColor(s, textColor: TextColor.yellow);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,6 @@
 | 
			
		||||
import 'dart:convert';
 | 
			
		||||
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
import 'package:rluv/global/api.dart';
 | 
			
		||||
@ -52,7 +53,7 @@ final Provider<List<BudgetCategory>> budgetCategoriesProvider = Provider<List<Bu
 | 
			
		||||
 | 
			
		||||
  final prefs = ref.read(prefsProvider);
 | 
			
		||||
  final budgetJson = jsonEncode({'budget_categories': categoriesData});
 | 
			
		||||
  print('updated prefs stored categories');
 | 
			
		||||
  printColor('updated prefs stored categories', textColor: TextColor.blue);
 | 
			
		||||
  prefs?.setString('budget_categories', budgetJson);
 | 
			
		||||
 | 
			
		||||
  return categories;
 | 
			
		||||
@ -113,10 +114,10 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
    );
 | 
			
		||||
    final token = ref.read(tokenProvider);
 | 
			
		||||
    if (token?.familyId == null) {
 | 
			
		||||
      print('No token, cannot fetch dashboard');
 | 
			
		||||
      printColor('No token, cannot fetch dashboard', textColor: TextColor.red);
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    print('Fetching dashboard');
 | 
			
		||||
    printColor('Fetching dashboard', textColor: TextColor.yellow);
 | 
			
		||||
    state = await ref.read(apiProvider.notifier).get("dashboard");
 | 
			
		||||
    WidgetsBinding.instance.addPostFrameCallback(
 | 
			
		||||
      (_) => ref.read(loadingStateProvider.notifier).state = false,
 | 
			
		||||
@ -125,7 +126,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
 | 
			
		||||
  void update(Map<String, dynamic> data) {
 | 
			
		||||
    if (state == null) {
 | 
			
		||||
      print('Cant update data, state is null');
 | 
			
		||||
      printColor('Cant update data, state is null', textColor: TextColor.red);
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    if (data.keys.length != 1 || data.values.length != 1) {
 | 
			
		||||
@ -150,7 +151,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
        final newState = state;
 | 
			
		||||
        newState![key] = subStateListObj;
 | 
			
		||||
        state = {...newState};
 | 
			
		||||
        // print(state);
 | 
			
		||||
        // printBlue(state);
 | 
			
		||||
        break;
 | 
			
		||||
      default:
 | 
			
		||||
        break;
 | 
			
		||||
@ -159,7 +160,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
 | 
			
		||||
  void add(Map<String, dynamic> data) {
 | 
			
		||||
    if (state == null) {
 | 
			
		||||
      print('Cant add data, state is null');
 | 
			
		||||
      printColor('Cant add data, state is null', textColor: TextColor.red);
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    if (data.keys.length != 1 || data.values.length != 1) {
 | 
			
		||||
@ -175,7 +176,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
        subStateList.add(data.values.first);
 | 
			
		||||
        newState![key] = subStateList;
 | 
			
		||||
        state = {...newState};
 | 
			
		||||
        // print(state);
 | 
			
		||||
        // printBlue(state);
 | 
			
		||||
        break;
 | 
			
		||||
      default:
 | 
			
		||||
        break;
 | 
			
		||||
@ -184,7 +185,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
 | 
			
		||||
  void removeWithId(String stateKey, int id) {
 | 
			
		||||
    if (state == null) {
 | 
			
		||||
      print('Cant remove data, state is null');
 | 
			
		||||
      printColor('Cant remove data, state is null', textColor: TextColor.red);
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    switch (stateKey) {
 | 
			
		||||
@ -196,7 +197,7 @@ class DashBoardStateNotifier extends StateNotifier<Map<String, dynamic>?> {
 | 
			
		||||
        subStateList.removeWhere((e) => (e as Map<String, dynamic>)['id'] == id);
 | 
			
		||||
        newState![stateKey] = subStateList;
 | 
			
		||||
        state = {...newState};
 | 
			
		||||
        // print(state);
 | 
			
		||||
        // printBlue(state);
 | 
			
		||||
        break;
 | 
			
		||||
      default:
 | 
			
		||||
        break;
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,6 @@
 | 
			
		||||
import 'dart:math';
 | 
			
		||||
 | 
			
		||||
import 'package:colorful_print/colorful_print.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:flutter/services.dart';
 | 
			
		||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
 | 
			
		||||
@ -55,7 +56,7 @@ extension MonetaryExtension on double {
 | 
			
		||||
      return "\$${pieces.first}.00";
 | 
			
		||||
    } else {
 | 
			
		||||
      if (pieces.length > 2) {
 | 
			
		||||
        print(pieces);
 | 
			
		||||
        printColor(pieces, textColor: TextColor.blue);
 | 
			
		||||
      }
 | 
			
		||||
      return '\$${pieces[0]}.${pieces[1].padRight(2, "0")}';
 | 
			
		||||
    }
 | 
			
		||||
@ -78,7 +79,7 @@ void showSnack(
 | 
			
		||||
    Duration duration = const Duration(seconds: 2)}) {
 | 
			
		||||
  final messengerKey = ref.read(scaffoldMessengerKeyProvider);
 | 
			
		||||
  if (messengerKey.currentState == null) {
 | 
			
		||||
    print('Cannot show snackbar, state == null');
 | 
			
		||||
    printColor('Cannot show snackbar, state == null', textColor: TextColor.red);
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
  final color = type == SnackType.info
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										27
									
								
								lib/models/budget.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								lib/models/budget.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,27 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'budget.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
Budget _$BudgetFromJson(Map<String, dynamic> json) => Budget(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      familyId: json['family_id'] as int,
 | 
			
		||||
      name: json['name'] as String,
 | 
			
		||||
      expectedIncome: (json['expected_income'] as num?)?.toDouble(),
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$BudgetToJson(Budget instance) => <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'family_id': instance.familyId,
 | 
			
		||||
      'expected_income': instance.expectedIncome,
 | 
			
		||||
      'name': instance.name,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
							
								
								
									
										31
									
								
								lib/models/budget_category_model.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								lib/models/budget_category_model.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,31 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'budget_category_model.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
BudgetCategory _$BudgetCategoryFromJson(Map<String, dynamic> json) =>
 | 
			
		||||
    BudgetCategory(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      budgetId: json['budget_id'] as int,
 | 
			
		||||
      name: json['name'] as String,
 | 
			
		||||
      color: colorFromJson(json['color'] as String),
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      amount: (json['amount'] as num).toDouble(),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$BudgetCategoryToJson(BudgetCategory instance) =>
 | 
			
		||||
    <String, dynamic>{
 | 
			
		||||
      'budget_id': instance.budgetId,
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'name': instance.name,
 | 
			
		||||
      'amount': instance.amount,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'color': colorToJson(instance.color),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
							
								
								
									
										24
									
								
								lib/models/family_model.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								lib/models/family_model.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,24 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'family_model.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
FamilyModel _$FamilyModelFromJson(Map<String, dynamic> json) => FamilyModel(
 | 
			
		||||
      id: json['id'] as int,
 | 
			
		||||
      code: json['code'] as String?,
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$FamilyModelToJson(FamilyModel instance) =>
 | 
			
		||||
    <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'code': instance.code,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
							
								
								
									
										38
									
								
								lib/models/shared_note.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								lib/models/shared_note.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,38 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'shared_note.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
SharedNote _$SharedNoteFromJson(Map<String, dynamic> json) => SharedNote(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      familyId: json['family_id'] as int,
 | 
			
		||||
      createdByUserId: json['created_by_user_id'] as int,
 | 
			
		||||
      content: json['content'] as String,
 | 
			
		||||
      title: json['title'] as String,
 | 
			
		||||
      color: optionalColorFromJson(json['color'] as String?),
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      tagIds: _tagIdsFromJson(json['tag_ids'] as String),
 | 
			
		||||
      isMarkdown: json['is_markdown'] == null
 | 
			
		||||
          ? false
 | 
			
		||||
          : boolFromJson(json['is_markdown'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$SharedNoteToJson(SharedNote instance) =>
 | 
			
		||||
    <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'family_id': instance.familyId,
 | 
			
		||||
      'created_by_user_id': instance.createdByUserId,
 | 
			
		||||
      'content': instance.content,
 | 
			
		||||
      'title': instance.title,
 | 
			
		||||
      'tag_ids': _tagIdsToJson(instance.tagIds),
 | 
			
		||||
      'color': optionalColorToJson(instance.color),
 | 
			
		||||
      'is_markdown': boolToJson(instance.isMarkdown),
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
							
								
								
									
										33
									
								
								lib/models/tag.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								lib/models/tag.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,33 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'tag.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
Tag _$TagFromJson(Map<String, dynamic> json) => Tag(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      familyId: json['family_id'] as int,
 | 
			
		||||
      createdByUserId: json['created_by_user_id'] as int,
 | 
			
		||||
      name: json['name'] as String,
 | 
			
		||||
      type: $enumDecode(_$TagTypeEnumMap, json['type']),
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$TagToJson(Tag instance) => <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'family_id': instance.familyId,
 | 
			
		||||
      'created_by_user_id': instance.createdByUserId,
 | 
			
		||||
      'name': instance.name,
 | 
			
		||||
      'type': _$TagTypeEnumMap[instance.type]!,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
const _$TagTypeEnumMap = {
 | 
			
		||||
  TagType.note: 'note',
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										21
									
								
								lib/models/token.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								lib/models/token.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,21 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'token.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
Token _$TokenFromJson(Map<String, dynamic> json) => Token(
 | 
			
		||||
      userId: json['user_id'] as int,
 | 
			
		||||
      familyId: json['family_id'] as int,
 | 
			
		||||
      generatedAt: dateFromJson(json['generated_at'] as int),
 | 
			
		||||
      expiresAt: dateFromJson(json['expires_at'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$TokenToJson(Token instance) => <String, dynamic>{
 | 
			
		||||
      'family_id': instance.familyId,
 | 
			
		||||
      'user_id': instance.userId,
 | 
			
		||||
      'generated_at': dateToJson(instance.generatedAt),
 | 
			
		||||
      'expires_at': dateToJson(instance.expiresAt),
 | 
			
		||||
    };
 | 
			
		||||
							
								
								
									
										41
									
								
								lib/models/transaction_model.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								lib/models/transaction_model.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,41 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'transaction_model.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
Transaction _$TransactionFromJson(Map<String, dynamic> json) => Transaction(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      amount: (json['amount'] as num).toDouble(),
 | 
			
		||||
      type: $enumDecode(_$TransactionTypeEnumMap, json['type']),
 | 
			
		||||
      budgetId: json['budget_id'] as int,
 | 
			
		||||
      budgetCategoryId: json['budget_category_id'] as int?,
 | 
			
		||||
      createdByUserId: json['created_by_user_id'] as int,
 | 
			
		||||
      date: dateFromJson(json['date'] as int),
 | 
			
		||||
      memo: json['memo'] as String?,
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$TransactionToJson(Transaction instance) =>
 | 
			
		||||
    <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'budget_category_id': instance.budgetCategoryId,
 | 
			
		||||
      'budget_id': instance.budgetId,
 | 
			
		||||
      'created_by_user_id': instance.createdByUserId,
 | 
			
		||||
      'amount': instance.amount,
 | 
			
		||||
      'memo': instance.memo,
 | 
			
		||||
      'type': _$TransactionTypeEnumMap[instance.type]!,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'date': dateToJson(instance.date),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
const _$TransactionTypeEnumMap = {
 | 
			
		||||
  TransactionType.income: 'income',
 | 
			
		||||
  TransactionType.expense: 'expense',
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										33
									
								
								lib/models/user.g.dart
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								lib/models/user.g.dart
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,33 @@
 | 
			
		||||
// GENERATED CODE - DO NOT MODIFY BY HAND
 | 
			
		||||
 | 
			
		||||
part of 'user.dart';
 | 
			
		||||
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
// JsonSerializableGenerator
 | 
			
		||||
// **************************************************************************
 | 
			
		||||
 | 
			
		||||
User _$UserFromJson(Map<String, dynamic> json) => User(
 | 
			
		||||
      id: json['id'] as int?,
 | 
			
		||||
      name: json['name'] as String,
 | 
			
		||||
      familyId: json['family_id'] as int,
 | 
			
		||||
      budgetId: json['budget_id'] as int,
 | 
			
		||||
      email: json['email'] as String?,
 | 
			
		||||
      username: json['username'] as String?,
 | 
			
		||||
      createdAt: dateFromJson(json['created_at'] as int),
 | 
			
		||||
      updatedAt: dateFromJson(json['updated_at'] as int),
 | 
			
		||||
      lastActivityAt: dateFromJson(json['last_activity_at'] as int),
 | 
			
		||||
      hide: json['hide'] == null ? false : boolFromJson(json['hide'] as int),
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
Map<String, dynamic> _$UserToJson(User instance) => <String, dynamic>{
 | 
			
		||||
      'id': instance.id,
 | 
			
		||||
      'family_id': instance.familyId,
 | 
			
		||||
      'budget_id': instance.budgetId,
 | 
			
		||||
      'name': instance.name,
 | 
			
		||||
      'username': instance.username,
 | 
			
		||||
      'email': instance.email,
 | 
			
		||||
      'hide': boolToJson(instance.hide),
 | 
			
		||||
      'created_at': dateToJson(instance.createdAt),
 | 
			
		||||
      'updated_at': dateToJson(instance.updatedAt),
 | 
			
		||||
      'last_activity_at': dateToJson(instance.lastActivityAt),
 | 
			
		||||
    };
 | 
			
		||||
@ -7,7 +7,7 @@ project(runner LANGUAGES CXX)
 | 
			
		||||
set(BINARY_NAME "rluv")
 | 
			
		||||
# The unique GTK application identifier for this application. See:
 | 
			
		||||
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
 | 
			
		||||
set(APPLICATION_ID "com.example.rluv")
 | 
			
		||||
set(APPLICATION_ID "com.fosscat.rluv")
 | 
			
		||||
 | 
			
		||||
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
 | 
			
		||||
# versions of CMake.
 | 
			
		||||
 | 
			
		||||
@ -6,6 +6,10 @@
 | 
			
		||||
 | 
			
		||||
#include "generated_plugin_registrant.h"
 | 
			
		||||
 | 
			
		||||
#include <url_launcher_linux/url_launcher_plugin.h>
 | 
			
		||||
 | 
			
		||||
void fl_register_plugins(FlPluginRegistry* registry) {
 | 
			
		||||
  g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
 | 
			
		||||
      fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
 | 
			
		||||
  url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,7 @@
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
list(APPEND FLUTTER_PLUGIN_LIST
 | 
			
		||||
  url_launcher_linux
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										20
									
								
								package_rename_config.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								package_rename_config.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,20 @@
 | 
			
		||||
package_rename_config:
 | 
			
		||||
  android:
 | 
			
		||||
    app_name: rluv
 | 
			
		||||
    package_name: com.fosscat.rluv
 | 
			
		||||
    override_old_package: com.example.rluv
 | 
			
		||||
    lang: kotlin
 | 
			
		||||
 | 
			
		||||
  ios:
 | 
			
		||||
    app_name: rluv
 | 
			
		||||
    bundle_name: fosscatrluv
 | 
			
		||||
    package_name: com.fosscat.rluv
 | 
			
		||||
 | 
			
		||||
  web:
 | 
			
		||||
    app_name: rluv
 | 
			
		||||
    description: Package to change project configurations.
 | 
			
		||||
 | 
			
		||||
  linux:
 | 
			
		||||
    app_name: rluv
 | 
			
		||||
    package_name: com.fosscat.rluv
 | 
			
		||||
    exe_name: rluv
 | 
			
		||||
							
								
								
									
										12
									
								
								packaging/linux/com.fosscat.rluv.desktop
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								packaging/linux/com.fosscat.rluv.desktop
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,12 @@
 | 
			
		||||
[Desktop Entry]
 | 
			
		||||
Version=1.0
 | 
			
		||||
Type=Application
 | 
			
		||||
 | 
			
		||||
Name=rluv
 | 
			
		||||
Comment=Budget App
 | 
			
		||||
Categories=Utility;
 | 
			
		||||
 | 
			
		||||
Icon=com.fosscat.rluv
 | 
			
		||||
Exec=rluv
 | 
			
		||||
Terminal=false
 | 
			
		||||
StartupWMClass=rluv
 | 
			
		||||
							
								
								
									
										32
									
								
								packaging/linux/com.fosscat.rluv.metainfo.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								packaging/linux/com.fosscat.rluv.metainfo.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,32 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<!-- 
 | 
			
		||||
    Generator for metainfo & .desktop files: 
 | 
			
		||||
    https://www.freedesktop.org/software/appstream/metainfocreator/#/
 | 
			
		||||
-->
 | 
			
		||||
<component type="desktop-application">
 | 
			
		||||
  <id>com.fosscat.rluv</id>
 | 
			
		||||
  <name>rluv</name>
 | 
			
		||||
  <summary>A budget app made with love</summary>
 | 
			
		||||
  <developer_name>Nate Anderson</developer_name>
 | 
			
		||||
  <url type="homepage">https://git.fosscat.com/n8r/rluv_client</url>
 | 
			
		||||
  <metadata_license></metadata_license>
 | 
			
		||||
  <project_license></project_license>
 | 
			
		||||
  <supports>
 | 
			
		||||
    <control>pointing</control>
 | 
			
		||||
    <control>keyboard</control>
 | 
			
		||||
    <control>touch</control>
 | 
			
		||||
  </supports>
 | 
			
		||||
  <description>
 | 
			
		||||
    <p>A budgeting app for my needs. Maybe your too?</p>
 | 
			
		||||
  </description>
 | 
			
		||||
  <launchable type="desktop-id">com.fosscat.rluv.desktop</launchable>
 | 
			
		||||
  <screenshots>
 | 
			
		||||
    <!-- <screenshot type="default"> -->
 | 
			
		||||
      <!-- <image>https://raw.githubusercontent.com/Merrit/flutter_flatpak_example/main/screenshots/screenshot.png</image> -->
 | 
			
		||||
    <!-- </screenshot> -->
 | 
			
		||||
  </screenshots>
 | 
			
		||||
  <content_rating type="oars-1.1" />
 | 
			
		||||
  <releases>
 | 
			
		||||
    <release version="0.0.1" date="2024-06-02" />
 | 
			
		||||
  </releases>
 | 
			
		||||
</component>
 | 
			
		||||
							
								
								
									
										431
									
								
								pubspec.lock
									
									
									
									
									
								
							
							
						
						
									
										431
									
								
								pubspec.lock
									
									
									
									
									
								
							@ -5,23 +5,18 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: _fe_analyzer_shared
 | 
			
		||||
      sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834
 | 
			
		||||
      sha256: eb376e9acf6938204f90eb3b1f00b578640d3188b4c8a8ec054f9f479af8d051
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "72.0.0"
 | 
			
		||||
  _macros:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description: dart
 | 
			
		||||
    source: sdk
 | 
			
		||||
    version: "0.3.2"
 | 
			
		||||
    version: "64.0.0"
 | 
			
		||||
  analyzer:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: analyzer
 | 
			
		||||
      sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139
 | 
			
		||||
      sha256: "69f54f967773f6c26c7dcb13e93d7ccee8b17a641689da39e878d5cf13b06893"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.7.0"
 | 
			
		||||
    version: "6.2.0"
 | 
			
		||||
  animated_splash_screen:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
@ -34,18 +29,18 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: archive
 | 
			
		||||
      sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d
 | 
			
		||||
      sha256: "0c8368c9b3f0abbc193b9d6133649a614204b528982bebc7026372d61677ce3a"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.6.1"
 | 
			
		||||
    version: "3.3.7"
 | 
			
		||||
  args:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: args
 | 
			
		||||
      sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a"
 | 
			
		||||
      sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.5.0"
 | 
			
		||||
    version: "2.4.2"
 | 
			
		||||
  async:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -82,34 +77,34 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: build_daemon
 | 
			
		||||
      sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
 | 
			
		||||
      sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.0.2"
 | 
			
		||||
    version: "4.0.0"
 | 
			
		||||
  build_resolvers:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: build_resolvers
 | 
			
		||||
      sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a"
 | 
			
		||||
      sha256: "6c4dd11d05d056e76320b828a1db0fc01ccd376922526f8e9d6c796a5adbac20"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.2"
 | 
			
		||||
    version: "2.2.1"
 | 
			
		||||
  build_runner:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description:
 | 
			
		||||
      name: build_runner
 | 
			
		||||
      sha256: dd09dd4e2b078992f42aac7f1a622f01882a8492fef08486b27ddde929c19f04
 | 
			
		||||
      sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.12"
 | 
			
		||||
    version: "2.4.6"
 | 
			
		||||
  build_runner_core:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: build_runner_core
 | 
			
		||||
      sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0
 | 
			
		||||
      sha256: "6d6ee4276b1c5f34f21fdf39425202712d2be82019983d52f351c94aafbc2c41"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "7.3.2"
 | 
			
		||||
    version: "7.2.10"
 | 
			
		||||
  built_collection:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -122,10 +117,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: built_value
 | 
			
		||||
      sha256: c7913a9737ee4007efedaffc968c049fd0f3d0e49109e778edc10de9426005cb
 | 
			
		||||
      sha256: "598a2a682e2a7a90f08ba39c0aaa9374c5112340f0a2e275f61b59389543d166"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "8.9.2"
 | 
			
		||||
    version: "8.6.1"
 | 
			
		||||
  characters:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -154,10 +149,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: code_builder
 | 
			
		||||
      sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37
 | 
			
		||||
      sha256: "4ad01d6e56db961d29661561effde45e519939fdaeb46c351275b182eac70189"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.10.0"
 | 
			
		||||
    version: "4.5.0"
 | 
			
		||||
  collection:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -166,6 +161,14 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.18.0"
 | 
			
		||||
  colorful_print:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: colorful_print
 | 
			
		||||
      sha256: "2c9784a0d5e6dcd480a0d4ab67b7263e19d31644a30a8bc7f67ceb6db89549c7"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.1.2"
 | 
			
		||||
  convert:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -178,50 +181,42 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: crypto
 | 
			
		||||
      sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
 | 
			
		||||
      sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.5"
 | 
			
		||||
  cupertino_icons:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    version: "3.0.3"
 | 
			
		||||
  csslib:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: cupertino_icons
 | 
			
		||||
      sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
 | 
			
		||||
      name: csslib
 | 
			
		||||
      sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.0.8"
 | 
			
		||||
    version: "1.0.0"
 | 
			
		||||
  custom_refresh_indicator:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: custom_refresh_indicator
 | 
			
		||||
      sha256: c34dd1dfb1f6b9ee2db9c5972586dba5e4445d79f8431f6ab098a6e963ccd39c
 | 
			
		||||
      sha256: "65a463f09623f6baf75e45e0c9034e9304810be3f5dfb00a54edde7252f4a524"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.0.1"
 | 
			
		||||
    version: "2.2.1"
 | 
			
		||||
  dart_style:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: dart_style
 | 
			
		||||
      sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab"
 | 
			
		||||
      sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.7"
 | 
			
		||||
    version: "2.3.2"
 | 
			
		||||
  dio:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: dio
 | 
			
		||||
      sha256: "5598aa796bbf4699afd5c67c0f5f6e2ed542afc956884b9cd58c306966efc260"
 | 
			
		||||
      sha256: ce75a1b40947fea0a0e16ce73337122a86762e38b982e1ccb909daa3b9bc4197
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "5.7.0"
 | 
			
		||||
  dio_web_adapter:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: dio_web_adapter
 | 
			
		||||
      sha256: "33259a9276d6cea88774a0000cfae0d861003497755969c92faa223108620dc8"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.0.0"
 | 
			
		||||
    version: "5.3.2"
 | 
			
		||||
  fake_async:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -234,18 +229,18 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: ffi
 | 
			
		||||
      sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
 | 
			
		||||
      sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.3"
 | 
			
		||||
    version: "2.1.0"
 | 
			
		||||
  file:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: file
 | 
			
		||||
      sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c"
 | 
			
		||||
      sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "7.0.0"
 | 
			
		||||
    version: "6.1.4"
 | 
			
		||||
  fixnum:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -259,22 +254,30 @@ packages:
 | 
			
		||||
    description: flutter
 | 
			
		||||
    source: sdk
 | 
			
		||||
    version: "0.0.0"
 | 
			
		||||
  flutter_highlight:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: flutter_highlight
 | 
			
		||||
      sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.7.0"
 | 
			
		||||
  flutter_lints:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description:
 | 
			
		||||
      name: flutter_lints
 | 
			
		||||
      sha256: "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c"
 | 
			
		||||
      sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.0.0"
 | 
			
		||||
    version: "2.0.2"
 | 
			
		||||
  flutter_riverpod:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: flutter_riverpod
 | 
			
		||||
      sha256: "0f1974eff5bbe774bf1d870e406fc6f29e3d6f1c46bd9c58e7172ff68a785d7d"
 | 
			
		||||
      sha256: b6cb0041c6c11cefb2dcb97ef436eba43c6d41287ac6d8ca93e02a497f53a4f3
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.5.1"
 | 
			
		||||
    version: "2.3.7"
 | 
			
		||||
  flutter_test:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description: flutter
 | 
			
		||||
@ -289,10 +292,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: frontend_server_client
 | 
			
		||||
      sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694
 | 
			
		||||
      sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.0.0"
 | 
			
		||||
    version: "3.2.0"
 | 
			
		||||
  glob:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -305,10 +308,26 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: graphs
 | 
			
		||||
      sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
 | 
			
		||||
      sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.2"
 | 
			
		||||
    version: "2.3.1"
 | 
			
		||||
  highlight:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: highlight
 | 
			
		||||
      sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.7.0"
 | 
			
		||||
  html:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: html
 | 
			
		||||
      sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.15.4"
 | 
			
		||||
  http_multi_server:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -329,26 +348,26 @@ packages:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description:
 | 
			
		||||
      name: icons_launcher
 | 
			
		||||
      sha256: "9b514ffed6ed69b232fd2bf34c44878c8526be71fc74129a658f35c04c9d4a9d"
 | 
			
		||||
      sha256: af05397792f6d82b93375a8a0253b8db0d3f816ef1dd1bf5c35cbab55321d327
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.7"
 | 
			
		||||
    version: "2.1.3"
 | 
			
		||||
  image:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: image
 | 
			
		||||
      sha256: "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8"
 | 
			
		||||
      sha256: a72242c9a0ffb65d03de1b7113bc4e189686fc07c7147b8b41811d0dd0e0d9bf
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.2.0"
 | 
			
		||||
    version: "4.0.17"
 | 
			
		||||
  intl:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: intl
 | 
			
		||||
      sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
 | 
			
		||||
      sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.19.0"
 | 
			
		||||
    version: "0.18.1"
 | 
			
		||||
  io:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -361,26 +380,26 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: js
 | 
			
		||||
      sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf
 | 
			
		||||
      sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.7.1"
 | 
			
		||||
    version: "0.6.7"
 | 
			
		||||
  json_annotation:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: json_annotation
 | 
			
		||||
      sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
 | 
			
		||||
      sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.9.0"
 | 
			
		||||
    version: "4.8.1"
 | 
			
		||||
  json_serializable:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description:
 | 
			
		||||
      name: json_serializable
 | 
			
		||||
      sha256: ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b
 | 
			
		||||
      sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.8.0"
 | 
			
		||||
    version: "6.7.1"
 | 
			
		||||
  jwt_decoder:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
@ -393,18 +412,18 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: leak_tracker
 | 
			
		||||
      sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
 | 
			
		||||
      sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "10.0.5"
 | 
			
		||||
    version: "10.0.4"
 | 
			
		||||
  leak_tracker_flutter_testing:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: leak_tracker_flutter_testing
 | 
			
		||||
      sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
 | 
			
		||||
      sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.5"
 | 
			
		||||
    version: "3.0.3"
 | 
			
		||||
  leak_tracker_testing:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -417,10 +436,18 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: lints
 | 
			
		||||
      sha256: "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235"
 | 
			
		||||
      sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "4.0.0"
 | 
			
		||||
    version: "2.1.1"
 | 
			
		||||
  logger:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: logger
 | 
			
		||||
      sha256: af05cc8714f356fd1f3888fb6741cbe9fbe25cdb6eedbab80e1a6db21047d4a4
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.0"
 | 
			
		||||
  logging:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -429,14 +456,22 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.2.0"
 | 
			
		||||
  macros:
 | 
			
		||||
  markdown:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: macros
 | 
			
		||||
      sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536"
 | 
			
		||||
      name: markdown
 | 
			
		||||
      sha256: acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.1.2-main.4"
 | 
			
		||||
    version: "7.1.1"
 | 
			
		||||
  markdown_widget:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: markdown_widget
 | 
			
		||||
      sha256: "088feae6be2dd527c7dd54e06ad104a3e70505aff2ce14a3b464482551a0e273"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  matcher:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -449,26 +484,26 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: material_color_utilities
 | 
			
		||||
      sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
 | 
			
		||||
      sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.11.1"
 | 
			
		||||
    version: "0.8.0"
 | 
			
		||||
  meta:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: meta
 | 
			
		||||
      sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
 | 
			
		||||
      sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.15.0"
 | 
			
		||||
    version: "1.12.0"
 | 
			
		||||
  mime:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: mime
 | 
			
		||||
      sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a"
 | 
			
		||||
      sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.0.6"
 | 
			
		||||
    version: "1.0.4"
 | 
			
		||||
  package_config:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -477,14 +512,22 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.0"
 | 
			
		||||
  package_rename:
 | 
			
		||||
    dependency: "direct dev"
 | 
			
		||||
    description:
 | 
			
		||||
      name: package_rename
 | 
			
		||||
      sha256: "5066d021830f7a984f66a3d6912b0b95efb1d91f14322ba26ceacce2a62fd312"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.6.0"
 | 
			
		||||
  page_transition:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: page_transition
 | 
			
		||||
      sha256: dee976b1f23de9bbef5cd512fe567e9f6278caee11f5eaca9a2115c19dc49ef6
 | 
			
		||||
      sha256: a7694bc120b7064a7f57c336914bb8885acf4f70bb3772c30c2fcfe6a85e43ff
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.0"
 | 
			
		||||
    version: "2.0.9"
 | 
			
		||||
  path:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -497,50 +540,58 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: path_provider_linux
 | 
			
		||||
      sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
 | 
			
		||||
      sha256: ba2b77f0c52a33db09fc8caf85b12df691bf28d983e84cf87ff6d693cfa007b3
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.2.1"
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  path_provider_platform_interface:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: path_provider_platform_interface
 | 
			
		||||
      sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
 | 
			
		||||
      sha256: bced5679c7df11190e1ddc35f3222c858f328fff85c3942e46e7f5589bf9eb84
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.2"
 | 
			
		||||
    version: "2.1.0"
 | 
			
		||||
  path_provider_windows:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: path_provider_windows
 | 
			
		||||
      sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
 | 
			
		||||
      sha256: ee0e0d164516b90ae1f970bdf29f726f1aa730d7cfc449ecc74c495378b705da
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.0"
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  petitparser:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: petitparser
 | 
			
		||||
      sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
 | 
			
		||||
      sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.0.2"
 | 
			
		||||
    version: "5.4.0"
 | 
			
		||||
  platform:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: platform
 | 
			
		||||
      sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
 | 
			
		||||
      sha256: "57c07bf82207aee366dfaa3867b3164e4f03a238a461a11b0e8a3a510d51203d"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.1.5"
 | 
			
		||||
    version: "3.1.1"
 | 
			
		||||
  plugin_platform_interface:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: plugin_platform_interface
 | 
			
		||||
      sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
 | 
			
		||||
      sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.8"
 | 
			
		||||
    version: "2.1.5"
 | 
			
		||||
  pointycastle:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: pointycastle
 | 
			
		||||
      sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.7.3"
 | 
			
		||||
  pool:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -561,74 +612,82 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: pubspec_parse
 | 
			
		||||
      sha256: c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8
 | 
			
		||||
      sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.3.0"
 | 
			
		||||
    version: "1.2.3"
 | 
			
		||||
  riverpod:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: riverpod
 | 
			
		||||
      sha256: f21b32ffd26a36555e501b04f4a5dca43ed59e16343f1a30c13632b2351dfa4d
 | 
			
		||||
      sha256: b0657b5b30c81a3184bdaab353045f0a403ebd60bb381591a8b7ad77dcade793
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.5.1"
 | 
			
		||||
    version: "2.3.7"
 | 
			
		||||
  scroll_to_index:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: scroll_to_index
 | 
			
		||||
      sha256: b707546e7500d9f070d63e5acf74fd437ec7eeeb68d3412ef7b0afada0b4f176
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.1"
 | 
			
		||||
  shared_preferences:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences
 | 
			
		||||
      sha256: "746e5369a43170c25816cc472ee016d3a66bc13fcf430c0bc41ad7b4b2922051"
 | 
			
		||||
      sha256: "0344316c947ffeb3a529eac929e1978fcd37c26be4e8468628bac399365a3ca1"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.2"
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  shared_preferences_android:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_android
 | 
			
		||||
      sha256: "480ba4345773f56acda9abf5f50bd966f581dac5d514e5fc4a18c62976bbba7e"
 | 
			
		||||
      sha256: fe8401ec5b6dcd739a0fe9588802069e608c3fdbfd3c3c93e546cf2f90438076
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.3.2"
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  shared_preferences_foundation:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_foundation
 | 
			
		||||
      sha256: c4b35f6cb8f63c147312c054ce7c2254c8066745125264f0c88739c417fc9d9f
 | 
			
		||||
      sha256: d29753996d8eb8f7619a1f13df6ce65e34bc107bef6330739ed76f18b22310ef
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.5.2"
 | 
			
		||||
    version: "2.3.3"
 | 
			
		||||
  shared_preferences_linux:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_linux
 | 
			
		||||
      sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
 | 
			
		||||
      sha256: "71d6806d1449b0a9d4e85e0c7a917771e672a3d5dc61149cc9fac871115018e1"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.1"
 | 
			
		||||
    version: "2.3.0"
 | 
			
		||||
  shared_preferences_platform_interface:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_platform_interface
 | 
			
		||||
      sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
 | 
			
		||||
      sha256: "23b052f17a25b90ff2b61aad4cc962154da76fb62848a9ce088efe30d7c50ab1"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.1"
 | 
			
		||||
    version: "2.3.0"
 | 
			
		||||
  shared_preferences_web:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_web
 | 
			
		||||
      sha256: d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e
 | 
			
		||||
      sha256: "7347b194fb0bbeb4058e6a4e87ee70350b6b2b90f8ac5f8bd5b3a01548f6d33a"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.2"
 | 
			
		||||
    version: "2.2.0"
 | 
			
		||||
  shared_preferences_windows:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shared_preferences_windows
 | 
			
		||||
      sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
 | 
			
		||||
      sha256: f95e6a43162bce43c9c3405f3eb6f39e5b5d11f65fab19196cf8225e2777624d
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.4.1"
 | 
			
		||||
    version: "2.3.0"
 | 
			
		||||
  shelf:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -641,10 +700,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: shelf_web_socket
 | 
			
		||||
      sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611"
 | 
			
		||||
      sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.0.0"
 | 
			
		||||
    version: "1.0.4"
 | 
			
		||||
  sky_engine:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description: flutter
 | 
			
		||||
@ -654,10 +713,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: source_gen
 | 
			
		||||
      sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832"
 | 
			
		||||
      sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.5.0"
 | 
			
		||||
    version: "1.4.0"
 | 
			
		||||
  source_helper:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -726,10 +785,10 @@ packages:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: test_api
 | 
			
		||||
      sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
 | 
			
		||||
      sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.7.2"
 | 
			
		||||
    version: "0.7.0"
 | 
			
		||||
  timing:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -754,6 +813,78 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.2.2"
 | 
			
		||||
  url_launcher:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher
 | 
			
		||||
      sha256: "781bd58a1eb16069412365c98597726cd8810ae27435f04b3b4d3a470bacd61e"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.1.12"
 | 
			
		||||
  url_launcher_android:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_android
 | 
			
		||||
      sha256: "3dd2388cc0c42912eee04434531a26a82512b9cb1827e0214430c9bcbddfe025"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.0.38"
 | 
			
		||||
  url_launcher_ios:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_ios
 | 
			
		||||
      sha256: "9af7ea73259886b92199f9e42c116072f05ff9bea2dcb339ab935dfc957392c2"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.1.4"
 | 
			
		||||
  url_launcher_linux:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_linux
 | 
			
		||||
      sha256: "207f4ddda99b95b4d4868320a352d374b0b7e05eefad95a4a26f57da413443f5"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.5"
 | 
			
		||||
  url_launcher_macos:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_macos
 | 
			
		||||
      sha256: "1c4fdc0bfea61a70792ce97157e5cc17260f61abbe4f39354513f39ec6fd73b1"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.6"
 | 
			
		||||
  url_launcher_platform_interface:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_platform_interface
 | 
			
		||||
      sha256: bfdfa402f1f3298637d71ca8ecfe840b4696698213d5346e9d12d4ab647ee2ea
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.3"
 | 
			
		||||
  url_launcher_web:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_web
 | 
			
		||||
      sha256: cc26720eefe98c1b71d85f9dc7ef0cada5132617046369d9dc296b3ecaa5cbb4
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.0.18"
 | 
			
		||||
  url_launcher_windows:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: url_launcher_windows
 | 
			
		||||
      sha256: "7967065dd2b5fccc18c653b97958fdf839c5478c28e767c61ee879f4e7882422"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.7"
 | 
			
		||||
  uuid:
 | 
			
		||||
    dependency: "direct main"
 | 
			
		||||
    description:
 | 
			
		||||
      name: uuid
 | 
			
		||||
      sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.7"
 | 
			
		||||
  vector_math:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -762,14 +893,22 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "2.1.4"
 | 
			
		||||
  visibility_detector:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: visibility_detector
 | 
			
		||||
      sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.4.0+2"
 | 
			
		||||
  vm_service:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: vm_service
 | 
			
		||||
      sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
 | 
			
		||||
      sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "14.2.5"
 | 
			
		||||
    version: "14.2.1"
 | 
			
		||||
  watcher:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -778,46 +917,38 @@ packages:
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.1.0"
 | 
			
		||||
  web:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: web
 | 
			
		||||
      sha256: d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.0.0"
 | 
			
		||||
  web_socket:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: web_socket
 | 
			
		||||
      sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "0.1.6"
 | 
			
		||||
  web_socket_channel:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: web_socket_channel
 | 
			
		||||
      sha256: "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f"
 | 
			
		||||
      sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.0.1"
 | 
			
		||||
    version: "2.4.0"
 | 
			
		||||
  win32:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: win32
 | 
			
		||||
      sha256: f2add6fa510d3ae152903412227bda57d0d5a8da61d2c39c1fb022c9429a41c0
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "5.0.6"
 | 
			
		||||
  xdg_directories:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: xdg_directories
 | 
			
		||||
      sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d
 | 
			
		||||
      sha256: f0c26453a2d47aa4c2570c6a033246a3fc62da2fe23c7ffdd0a7495086dc0247
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "1.0.4"
 | 
			
		||||
    version: "1.0.2"
 | 
			
		||||
  xml:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
      name: xml
 | 
			
		||||
      sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
 | 
			
		||||
      sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
 | 
			
		||||
      url: "https://pub.dev"
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "6.5.0"
 | 
			
		||||
    version: "6.3.0"
 | 
			
		||||
  yaml:
 | 
			
		||||
    dependency: transitive
 | 
			
		||||
    description:
 | 
			
		||||
@ -827,5 +958,5 @@ packages:
 | 
			
		||||
    source: hosted
 | 
			
		||||
    version: "3.1.2"
 | 
			
		||||
sdks:
 | 
			
		||||
  dart: ">=3.5.0-259.0.dev <4.0.0"
 | 
			
		||||
  flutter: ">=3.22.0"
 | 
			
		||||
  dart: ">=3.3.0 <4.0.0"
 | 
			
		||||
  flutter: ">=3.18.0-18.0.pre.54"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										80
									
								
								pubspec.yaml
									
									
									
									
									
								
							
							
						
						
									
										80
									
								
								pubspec.yaml
									
									
									
									
									
								
							@ -1,104 +1,42 @@
 | 
			
		||||
name: rluv
 | 
			
		||||
description: A new Flutter project.
 | 
			
		||||
# The following line prevents the package from being accidentally published to
 | 
			
		||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
 | 
			
		||||
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
 | 
			
		||||
description: A budget app for lovers
 | 
			
		||||
publish_to: 'none'
 | 
			
		||||
 | 
			
		||||
# The following defines the version and build number for your application.
 | 
			
		||||
# A version number is three numbers separated by dots, like 1.2.43
 | 
			
		||||
# followed by an optional build number separated by a +.
 | 
			
		||||
# Both the version and the builder number may be overridden in flutter
 | 
			
		||||
# build by specifying --build-name and --build-number, respectively.
 | 
			
		||||
# In Android, build-name is used as versionName while build-number used as versionCode.
 | 
			
		||||
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
 | 
			
		||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
 | 
			
		||||
# Read more about iOS versioning at
 | 
			
		||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
 | 
			
		||||
# In Windows, build-name is used as the major, minor, and patch parts
 | 
			
		||||
# of the product and file versions while build-number is used as the build suffix.
 | 
			
		||||
version: 1.0.0+1
 | 
			
		||||
 | 
			
		||||
environment:
 | 
			
		||||
  sdk: '>=2.19.6 <3.0.0'
 | 
			
		||||
 | 
			
		||||
# Dependencies specify other packages that your package needs in order to work.
 | 
			
		||||
# To automatically upgrade your package dependencies to the latest versions
 | 
			
		||||
# consider running `flutter pub upgrade --major-versions`. Alternatively,
 | 
			
		||||
# dependencies can be manually updated by changing the version numbers below to
 | 
			
		||||
# the latest version available on pub.dev. To see which dependencies have newer
 | 
			
		||||
# versions available, run `flutter pub outdated`.
 | 
			
		||||
dependencies:
 | 
			
		||||
  flutter:
 | 
			
		||||
    sdk: flutter
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  # The following adds the Cupertino Icons font to your application.
 | 
			
		||||
  # Use with the CupertinoIcons class for iOS style icons.
 | 
			
		||||
  cupertino_icons: ^1.0.2
 | 
			
		||||
  dio: ^5.2.1+1
 | 
			
		||||
  flutter_riverpod: ^2.1.3
 | 
			
		||||
  # helpers:
 | 
			
		||||
  #   git:
 | 
			
		||||
  #     url: https://github.com/mitch2na/helpers.git
 | 
			
		||||
  #     ref: main
 | 
			
		||||
  # uuid: ^3.0.7
 | 
			
		||||
  uuid: ^3.0.7
 | 
			
		||||
  colorful_print: ^0.1.2
 | 
			
		||||
  json_annotation: ^4.8.0
 | 
			
		||||
  shared_preferences: ^2.1.2
 | 
			
		||||
  intl: ^0.19.0
 | 
			
		||||
  # markdown_widget: ^2.2.0
 | 
			
		||||
  custom_refresh_indicator: ^4.0.1
 | 
			
		||||
  intl: ^0.18.1
 | 
			
		||||
  markdown_widget: ^2.2.0
 | 
			
		||||
  custom_refresh_indicator: ^2.2.1
 | 
			
		||||
  jwt_decoder: ^2.0.1
 | 
			
		||||
  animated_splash_screen: ^1.3.0
 | 
			
		||||
 | 
			
		||||
dev_dependencies:
 | 
			
		||||
  flutter_test:
 | 
			
		||||
    sdk: flutter
 | 
			
		||||
 | 
			
		||||
  build_runner: ^2.3.3
 | 
			
		||||
  json_serializable: ^6.6.0
 | 
			
		||||
  flutter_lints: ^4.0.0
 | 
			
		||||
  flutter_lints: ^2.0.0
 | 
			
		||||
  icons_launcher: ^2.1.3
 | 
			
		||||
  package_rename: ^1.6.0
 | 
			
		||||
 | 
			
		||||
# For information on the generic Dart part of this file, see the
 | 
			
		||||
# following page: https://dart.dev/tools/pub/pubspec
 | 
			
		||||
 | 
			
		||||
# The following section is specific to Flutter packages.
 | 
			
		||||
flutter:
 | 
			
		||||
 | 
			
		||||
  # The following line ensures that the Material Icons font is
 | 
			
		||||
  # included with your application, so that you can use the icons in
 | 
			
		||||
  # the material Icons class.
 | 
			
		||||
  uses-material-design: true
 | 
			
		||||
 | 
			
		||||
  # To add assets to your application, add an assets section, like this:
 | 
			
		||||
  assets:
 | 
			
		||||
    - assets/
 | 
			
		||||
 | 
			
		||||
  # An image asset can refer to one or more resolution-specific "variants", see
 | 
			
		||||
  # https://flutter.dev/assets-and-images/#resolution-aware
 | 
			
		||||
 | 
			
		||||
  # For details regarding adding assets from package dependencies, see
 | 
			
		||||
  # https://flutter.dev/assets-and-images/#from-packages
 | 
			
		||||
 | 
			
		||||
  # To add custom fonts to your application, add a fonts section here,
 | 
			
		||||
  # in this "flutter" section. Each entry in this list should have a
 | 
			
		||||
  # "family" key with the font family name, and a "fonts" key with a
 | 
			
		||||
  # list giving the asset and other descriptors for the font. For
 | 
			
		||||
  # example:
 | 
			
		||||
  # fonts:
 | 
			
		||||
  #   - family: Schyler
 | 
			
		||||
  #     fonts:
 | 
			
		||||
  #       - asset: fonts/Schyler-Regular.ttf
 | 
			
		||||
  #       - asset: fonts/Schyler-Italic.ttf
 | 
			
		||||
  #         style: italic
 | 
			
		||||
  #   - family: Trajan Pro
 | 
			
		||||
  #     fonts:
 | 
			
		||||
  #       - asset: fonts/TrajanPro.ttf
 | 
			
		||||
  #       - asset: fonts/TrajanPro_Bold.ttf
 | 
			
		||||
  #         weight: 700
 | 
			
		||||
  #
 | 
			
		||||
  # For details regarding fonts from package dependencies,
 | 
			
		||||
  # see https://flutter.dev/custom-fonts/#from-packages
 | 
			
		||||
icons_launcher:
 | 
			
		||||
  image_path: "assets/app_icon.png"
 | 
			
		||||
  platforms:
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,4 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
<!DOCTYPE html><html><head>
 | 
			
		||||
  <!--
 | 
			
		||||
    If you are serving your web app in a path other than the root, change the
 | 
			
		||||
    href value below to reflect the base path you are serving from.
 | 
			
		||||
@ -18,7 +16,7 @@
 | 
			
		||||
 | 
			
		||||
  <meta charset="UTF-8">
 | 
			
		||||
  <meta content="IE=Edge" http-equiv="X-UA-Compatible">
 | 
			
		||||
  <meta name="description" content="A new Flutter project.">
 | 
			
		||||
  <meta name="description" content="Package to change project configurations.">
 | 
			
		||||
 | 
			
		||||
  <!-- iOS meta tags & icons -->
 | 
			
		||||
  <meta name="apple-mobile-web-app-capable" content="yes">
 | 
			
		||||
@ -27,7 +25,7 @@
 | 
			
		||||
  <link rel="apple-touch-icon" href="icons/Icon-192.png">
 | 
			
		||||
 | 
			
		||||
  <!-- Favicon -->
 | 
			
		||||
  <link rel="icon" type="image/png" href="favicon.png"/>
 | 
			
		||||
  <link rel="icon" type="image/png" href="favicon.png">
 | 
			
		||||
 | 
			
		||||
  <title>rluv</title>
 | 
			
		||||
  <link rel="manifest" href="manifest.json">
 | 
			
		||||
@ -37,7 +35,7 @@
 | 
			
		||||
    var serviceWorkerVersion = null;
 | 
			
		||||
  </script>
 | 
			
		||||
  <!-- This script adds the flutter initialization JS code -->
 | 
			
		||||
  <script src="flutter.js" defer></script>
 | 
			
		||||
  <script src="flutter.js" defer=""></script>
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
  <script>
 | 
			
		||||
@ -55,5 +53,7 @@
 | 
			
		||||
      });
 | 
			
		||||
    });
 | 
			
		||||
  </script>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
</body></html>
 | 
			
		||||
 | 
			
		||||
@ -5,7 +5,7 @@
 | 
			
		||||
    "display": "standalone",
 | 
			
		||||
    "background_color": "#0175C2",
 | 
			
		||||
    "theme_color": "#0175C2",
 | 
			
		||||
    "description": "A new Flutter project.",
 | 
			
		||||
    "description": "Package to change project configurations.",
 | 
			
		||||
    "orientation": "portrait-primary",
 | 
			
		||||
    "prefer_related_applications": false,
 | 
			
		||||
    "icons": [
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user