Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix: fixes package directories, to fix the build problems #1

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -9,6 +9,7 @@ import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontStyle
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.TextUnit
import dev.anvith.binanceninja.ui.theme.font


@Composable
Expand Down
@@ -1,9 +1,14 @@
package dev.anvith.binanceninja.core.ui.theme
package dev.anvith.binanceninja.ui.theme

import androidx.compose.runtime.Composable
import androidx.compose.ui.text.font.Font
import androidx.compose.ui.text.font.FontStyle
import androidx.compose.ui.text.font.FontWeight

@Composable
expect fun font(name: String, res: String, weight: FontWeight, style: FontStyle): Font
expect fun font(
name: String,
res: String,
weight: FontWeight,
style: FontStyle
): Font
17 changes: 17 additions & 0 deletions iosApp/iosApp.xcodeproj/project.pbxproj
Expand Up @@ -48,6 +48,7 @@
7555FF7D242A565900829871 /* iosApp */,
7555FF7C242A565900829871 /* Products */,
42799AB246E5F90AF97AA0EF /* Frameworks */,
BDA8E6BDDD01F1CD8458C319 /* swiftpm */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -80,6 +81,22 @@
path = Configuration;
sourceTree = "<group>";
};
BDA8E2BD3193FFA8203CA34D /* configuration */ = {
isa = PBXGroup;
children = (
);
path = configuration;
sourceTree = "<group>";
};
BDA8E6BDDD01F1CD8458C319 /* swiftpm */ = {
isa = PBXGroup;
children = (
BDA8E2BD3193FFA8203CA34D /* configuration */,
);
name = swiftpm;
path = iosApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down