Skip to content

Commit

Permalink
Merge pull request #108 from VictorKabata/update-libs
Browse files Browse the repository at this point in the history
Update libs
  • Loading branch information
VictorKabata authored Jan 1, 2024
2 parents 6145748 + 7af2a0c commit 0f35864
Show file tree
Hide file tree
Showing 6 changed files with 702 additions and 24 deletions.
7 changes: 5 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[*.{kt,kts}]
disabled_rules = import-ordering, experimental:argument-list-wrapping,indent
insert_final_newline = true
disabled_rules = import-ordering, experimental:argument-list-wrapping, indent
insert_final_newline = true
# ij_kotlin_allow_trailing_comma = false
# ij_kotlin_allow_trailing_comma_on_call_site = false
# indent_size = unset
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ local.properties
appiOS/Pods/
appiOS/Podfile.lock
*.podspec
*.pbxproj
*.xcuserstate
2 changes: 1 addition & 1 deletion appAndroid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.5"
kotlinCompilerExtensionVersion = "1.5.7"
}
namespace = "com.vickbt.notflix"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ fun MainWindow(applicationScope: ApplicationScope) {
title = "Notflix",
state = rememberWindowState(
position = WindowPosition.Aligned(Alignment.Center),
width = 1080.dp, // or Dp.Unspecified,
height = 800.dp, // or Dp.Unspecified,
width = 1080.dp,
height = 800.dp,
)
) {
MainScreen()
Expand Down
Loading

0 comments on commit 0f35864

Please sign in to comment.