1
1
import React , { useState , Fragment } from 'react' ;
2
2
import { View , Text } from 'react-native' ;
3
- import { Button , Drawer , Spacing , WingBlank } from '@uiw/react-native' ;
3
+ import { RootSiblingPortal } from 'react-native-root-siblings' ;
4
+ import { Button , Drawer , Spacing , WingBlank , Input } from '@uiw/react-native' ;
4
5
import Layout , { Container } from '../../Layout' ;
5
6
import { ComProps } from '../../routes' ;
6
7
const { Header, Body, Footer} = Layout ;
@@ -14,42 +15,66 @@ export default function DrawerView({route}: DrawerViewProps) {
14
15
const [ visible2 , setVisible2 ] = useState ( false ) ;
15
16
const [ visible3 , setVisible3 ] = useState ( false ) ;
16
17
const [ visible4 , setVisible4 ] = useState ( false ) ;
18
+ const [ value , setValue ] = useState ( '' ) ;
19
+
17
20
return (
18
21
< Fragment >
19
- < Drawer isOpen = { visible2 } placement = "right" onChange = { ( isOpen : boolean ) => setVisible2 ( isOpen ) } drawerBackgroundColor = "red" >
20
- < View >
21
- < Text style = { { color : '#ccc' } } > 右边打开抽屉内容</ Text >
22
- </ View >
23
- </ Drawer >
24
22
< Drawer
25
23
isOpen = { visible }
24
+ drawerBackgroundColor = "red"
26
25
onChange = { ( isOpen : boolean ) => {
27
26
setVisible ( isOpen ) ;
28
27
} } >
29
28
< View >
30
29
< Text style = { { color : '#ccc' } } > 左边打开抽屉内容</ Text >
31
30
</ View >
32
31
</ Drawer >
33
- < Drawer
34
- isOpen = { visible3 }
35
- placement = "top"
36
- onChange = { ( isOpen : boolean ) => {
37
- setVisible3 ( isOpen ) ;
38
- } } >
39
- < View >
40
- < Text style = { { color : '#ccc' } } > 上边打开抽屉内容</ Text >
41
- </ View >
42
- </ Drawer >
32
+
33
+ < RootSiblingPortal >
34
+ < Drawer
35
+ drawerWidth = { 200 }
36
+ drawerHeight = { 200 }
37
+ isOpen = { visible2 }
38
+ placement = "right"
39
+ onChange = { ( isOpen : boolean ) => setVisible2 ( isOpen ) }
40
+ drawerBackgroundColor = "red" >
41
+ < View >
42
+ < Input
43
+ onChangeText = { ( value : string ) => {
44
+ setValue ( value ) ;
45
+ } }
46
+ value = { value }
47
+ />
48
+ < Text style = { { color : '#ccc' } } > 右边打开抽屉内容</ Text >
49
+ </ View >
50
+ </ Drawer >
51
+ </ RootSiblingPortal >
52
+
53
+ < RootSiblingPortal >
54
+ < Drawer
55
+ isOpen = { visible3 }
56
+ placement = "top"
57
+ drawerBackgroundColor = "red"
58
+ onChange = { ( isOpen : boolean ) => {
59
+ setVisible3 ( isOpen ) ;
60
+ } } >
61
+ < View >
62
+ < Text style = { { color : '#ccc' } } > 上边打开抽屉内容</ Text >
63
+ </ View >
64
+ </ Drawer >
65
+ </ RootSiblingPortal >
43
66
< Drawer
44
67
isOpen = { visible4 }
45
68
placement = "bottom"
69
+ drawerBackgroundColor = "red"
46
70
onChange = { isOpen => {
47
71
setVisible4 ( isOpen ) ;
48
72
} } >
49
73
< View >
50
74
< Text style = { { color : '#ccc' } } > 下边打开抽屉内容</ Text >
51
75
</ View >
52
76
</ Drawer >
77
+
53
78
< Container >
54
79
< Layout >
55
80
< Header title = { title } description = { description } />
0 commit comments