-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add chatContentScrollViewPlatformStyles
- Loading branch information
1 parent
f6b4e71
commit dbcb442
Showing
5 changed files
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/styles/utils/chatContentScrollViewPlatformStyles/index.native.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import type ChatContentScrollViewPlatformStyles from './types'; | ||
|
||
const chatContentScrollViewPlatformStyles: ChatContentScrollViewPlatformStyles = {}; | ||
|
||
export default chatContentScrollViewPlatformStyles; |
7 changes: 7 additions & 0 deletions
7
src/styles/utils/chatContentScrollViewPlatformStyles/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type ChatContentScrollViewPlatformStyles from './types'; | ||
|
||
const chatContentScrollViewPlatformStyles: ChatContentScrollViewPlatformStyles = { | ||
overflow: 'hidden', | ||
}; | ||
|
||
export default chatContentScrollViewPlatformStyles; |
5 changes: 5 additions & 0 deletions
5
src/styles/utils/chatContentScrollViewPlatformStyles/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import type {ViewStyle} from 'react-native'; | ||
|
||
type ChatContentScrollViewPlatformStyles = ViewStyle; | ||
|
||
export default ChatContentScrollViewPlatformStyles; |