Skip to content

Commit 99d85a0

Browse files
committed
splitr
1 parent 0d4a6b0 commit 99d85a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+143
-141
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# Shared
1+
# Splitr
22

33
:warning: This is a beta version. Use it at your own risk!
44

5-
Shared is a free and open-source app that lets you create multiple projects, add and track expenses, split expenses unevenly between members, and settle up balances between group members. It's a great alternative to other expense tracking apps, especially for groups who need to manage expenses together.
5+
Splitr is a free and open-source app that lets you create multiple projects, add and track expenses, split expenses unevenly between members, and settle up balances between group members. It's a great alternative to other expense tracking apps, especially for groups who need to manage expenses together.
66

77
## Installation
88

9-
This is currently a beta version. To get the app, you have to build it yourself with flutter or download the latest beta version [here](https://github.com/BhasherBEL/Shared/releases).
9+
This is currently a beta version. To get the app, you have to build it yourself with flutter or download the latest beta version [here](https://github.com/BhasherBEL/Splitr/releases).
1010

1111

1212
## Screenshots
1313

1414
| | | |
1515
|:-------------------------:|:-------------------------:|:-------------------------:|
16-
![Project](https://raw.githubusercontent.com/BhasherBEL/Shared/master/metadata/en-US/images/phoneScreenshots/1.png) | ![Refund](https://raw.githubusercontent.com/BhasherBEL/Shared/master/metadata/en-US/images/phoneScreenshots/2.png) | ![New project](https://raw.githubusercontent.com/BhasherBEL/Shared/master/metadata/en-US/images/phoneScreenshots/3.png) |
16+
![Project](https://raw.githubusercontent.com/BhasherBEL/Splitr/master/metadata/en-US/images/phoneScreenshots/1.png) | ![Refund](https://raw.githubusercontent.com/BhasherBEL/Splitr/master/metadata/en-US/images/phoneScreenshots/2.png) | ![New project](https://raw.githubusercontent.com/BhasherBEL/Splitr/master/metadata/en-US/images/phoneScreenshots/3.png) |
1717

1818
## Features
1919

@@ -31,4 +31,4 @@ This is currently a beta version. To get the app, you have to build it yourself
3131

3232
## License
3333

34-
Shared is licensed under the [MIT License](LICENCE.md).
34+
Splitr is licensed under the [MIT License](LICENCE.md).

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ android {
4444

4545
defaultConfig {
4646
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
47-
applicationId "be.bhasher.shared"
47+
applicationId "be.bhasher.splitr"
4848
// You can update the following values to match your application needs.
4949
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
5050
minSdkVersion flutter.minSdkVersion

android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="be.bhasher.shared">
2+
package="be.bhasher.splitr">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

android/app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="be.bhasher.shared">
2+
package="be.bhasher.splitr">
33
<uses-permission android:name="android.permission.INTERNET"/>
44
<application
5-
android:label="Shared"
5+
android:label="Splitr"
66
android:name="${applicationName}"
77
android:icon="@mipmap/ic_launcher">
88
<activity
@@ -29,10 +29,10 @@
2929
<action android:name="android.intent.action.VIEW" />
3030
<category android:name="android.intent.category.DEFAULT" />
3131
<category android:name="android.intent.category.BROWSABLE" />
32-
<data android:scheme="http" android:host="shared.bhasher.com" />
33-
<data android:scheme="http" android:host="www.shared.bhasher.com" />
34-
<data android:scheme="https" android:host="shared.bhasher.com" />
35-
<data android:scheme="https" android:host="www.shared.bhasher.com" />
32+
<data android:scheme="http" android:host="splitr.bhasher.com" />
33+
<data android:scheme="http" android:host="www.splitr.bhasher.com" />
34+
<data android:scheme="https" android:host="splitr.bhasher.com" />
35+
<data android:scheme="https" android:host="www.splitr.bhasher.com" />
3636
</intent-filter>
3737
</activity>
3838
<!-- Don't delete the meta-data below.

android/app/src/main/kotlin/be/bhasher/shared/MainActivity.kt renamed to android/app/src/main/kotlin/be/bhasher/splitr/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package be.bhasher.shared
1+
package be.bhasher.splitr
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="be.bhasher.shared">
2+
package="be.bhasher.splitr">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

lib/components/pages/instances/instance_tile.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
2-
import 'package:shared/model/app_data.dart';
3-
import 'package:shared/model/instance.dart';
42

3+
import '../../../model/app_data.dart';
4+
import '../../../model/instance.dart';
55
import '../../../utils/dialogs/confirm_box.dart';
66
import '../../../utils/navigator/navigator.dart';
77
import '../new_instance/new_instance_page.dart';

lib/components/pages/instances/instances_list_page.dart

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import 'package:flutter/material.dart';
2-
import 'package:shared/components/pages/instances/instance_tile.dart';
3-
import 'package:shared/components/pages/new_instance/new_instance_page.dart';
4-
import 'package:shared/model/app_data.dart';
5-
import 'package:shared/model/instance.dart';
6-
import 'package:shared/utils/navigator/navigator.dart';
2+
3+
import '../../../model/app_data.dart';
4+
import '../../../model/instance.dart';
5+
import '../../../utils/navigator/navigator.dart';
6+
import '../new_instance/new_instance_page.dart';
7+
import 'instance_tile.dart';
78

89
class InstancesListPage extends StatefulWidget {
910
const InstancesListPage({super.key});

lib/components/pages/new_instance/new_instance_page.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import 'package:flutter/material.dart';
22
import 'package:pocketbase/pocketbase.dart';
3-
import 'package:shared/components/pages/new_instance/new_instance_selector.dart';
4-
import 'package:shared/model/app_data.dart';
5-
import 'package:shared/model/connectors/provider.dart';
6-
import 'package:shared/model/instance.dart';
73

4+
import '../../../model/app_data.dart';
85
import '../../../model/connectors/pocketbase/provider.dart';
6+
import '../../../model/connectors/provider.dart';
7+
import '../../../model/instance.dart';
8+
import 'new_instance_selector.dart';
99

1010
class NewInstancePage extends StatelessWidget {
1111
NewInstancePage({

lib/components/pages/new_instance/new_instance_pocketbase.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:flutter/material.dart';
2-
import 'package:shared/components/pages/new_instance/new_instance_page.dart';
2+
3+
import 'new_instance_page.dart';
34

45
class NewInstancePocketbase extends StatefulWidget {
56
const NewInstancePocketbase(this.instanceData, {super.key});

0 commit comments

Comments
 (0)