Navigation

    Monaca & Onsen UI
    • Register
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. newstackdevelopment
    N
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    newstackdevelopment

    @newstackdevelopment

    0
    Reputation
    1
    Posts
    658
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    newstackdevelopment Follow

    Posts made by newstackdevelopment

    • Splitter , Toolbar, and Action Sheet

      I am utilizing Preact in place of React. I don’t know if that is the issue but I haven’t had any other issue with the components.

      I am trying to use the splitter, toolbar, and actionsheet components in my application the current layout is as follows

      <Splitter>
         <Splitter Side>
           <Page>
              <List>
                 <ListItem/>
             </List>
         </Page>
      </SplitterSide>
      <SplitterContent>
         <Page renderToolBar()>
            <ActionSheet>
               <ActionSheetButton/>
            </ActionSheet>
         </Page>
       </SplitterContent>
      </Splitter>
      

      Now my problem is the actionSheet. The toolbar works but the actionsheet doesn’t show. I am using Redux for state.

         <ActionSheet
            isOpen={this.props.isOpenActionSheet}
         >
      

      If I use the redux state it doesn’t work even though the isOpen prop changes to true. If I put the isOpen prop to true manually it does show the action sheet.

      <ActionSheet
         isOpen={true}
      >
      
      posted in Developer Corner
      N
      newstackdevelopment