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: [Capacitor] Set overscroll background color from theme #2594

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
1a1943e
Add changes to prevent ios bounce.
Nov 16, 2024
fe721c1
Add updated css to panda.config file.
Nov 18, 2024
fdec688
Lint
Nov 18, 2024
a9a1437
Lint
Nov 18, 2024
15ad477
Lint
Nov 18, 2024
89b6c1d
Final lint
Nov 18, 2024
1c95f1f
Save progress
Nov 26, 2024
c0a9da7
Ignore file
Nov 26, 2024
4611d74
Removed custom plugin add.
Nov 26, 2024
69f998a
Save progress
Nov 26, 2024
116cc0d
Remove security issues.
Nov 26, 2024
932b5fd
Remove,
Nov 26, 2024
439f1db
Ignore lint
Nov 26, 2024
12b5ddb
Add ignores
Nov 26, 2024
e3978e0
Fix styling
Nov 26, 2024
dcfa432
Add file
Nov 26, 2024
fee5e12
Add file
Nov 26, 2024
a2642e2
Fix
Nov 26, 2024
973195d
Add webview plugin
Nov 26, 2024
a3d59d0
Remove node_modules
Nov 26, 2024
a5941fd
Remove node modules
Nov 26, 2024
e40ae4e
Save progress
Nov 26, 2024
ae0af6d
Adjustments before rebase
Nov 26, 2024
17a3b0c
Add fix for updating webview for loaded app. Need reload of window.
Nov 26, 2024
8ab995e
Fix lint
Nov 26, 2024
ceae07d
Add files to gitignore
Nov 26, 2024
7016b54
Remove commentted code
Nov 26, 2024
2fd062c
Update lock
Nov 27, 2024
2ceac4b
Test
Nov 27, 2024
dfb8e5c
Revert
Nov 27, 2024
671a23c
Add refresh only on capacitor
Nov 27, 2024
7518d80
Test
Nov 27, 2024
bd3e2f8
Remove yarn.lock install of .webview plugin due to errors with yarn
Nov 27, 2024
e01185e
Save progress
Nov 27, 2024
0982e2a
Fix
Nov 27, 2024
600e44b
Revert
Nov 27, 2024
b26c87d
S
Nov 27, 2024
95864fc
ci: fix checksum of webview-background dependency
trevinhofmann Nov 30, 2024
d8914c6
Resolve webview-background to local package.
raineorshine Nov 30, 2024
a4ab57d
Merge branch 'main' into bug-issue-1700
raineorshine Nov 30, 2024
01fc1b8
Add code review changes.
Dec 22, 2024
f6f8829
Add updated yarn lock
Dec 23, 2024
0e2cba1
Try to sync packages with github checksum value.
Dec 24, 2024
d0e3e1b
Save checksum change
Dec 24, 2024
e4efcf2
Add fix for breaking build
Dec 26, 2024
a30a48a
Add fix to lint.
Dec 26, 2024
d439dbb
ci: fix checksum of webview-background-dependency again
trevinhofmann Dec 28, 2024
91635d2
Readd code to switch theme after startup.
Dec 30, 2024
a593e29
Remove comment.
Jan 1, 2025
ea94d1b
Add changes for ios top safe area.
Jan 3, 2025
710b932
Merge branch 'main' into bug-issue-1700
msdewitt Jan 3, 2025
8cabd67
Add changes to puppeteer console.
Jan 3, 2025
1c2cd5f
Fix lint errors
Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion capacitor.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const config: CapacitorConfig = {
webDir: 'build',
...serverConfig,
ios: {
backgroundColor: '000000',
msdewitt marked this conversation as resolved.
Show resolved Hide resolved
scrollEnabled: true,
},
plugins: {
Keyboard: {
Expand Down
2 changes: 1 addition & 1 deletion ios/App/App/EnableBounce.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
@implementation UIScrollView (NoBounce)
- (void)didMoveToWindow {
[super didMoveToWindow];
self.bounces = YES;
self.bounces = NO;
}
@end
10 changes: 9 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@
This file is deprecated. All styles should be added inline using PandaCSS.
See: https://panda-css.com/docs/concepts/writing-styles
*/

msdewitt marked this conversation as resolved.
Show resolved Hide resolved
html,
body,
#root,
#app {
height: 100%;
font-size: 16px;
msdewitt marked this conversation as resolved.
Show resolved Hide resolved
overflow-y: auto;
clip-path: inset(0 0 0 0);
}
/* react-transition-group animation: fade */
.fade-enter {
opacity: 0;
Expand Down
Loading