Git Product home page Git Product logo

Comments (3)

marouanekadiri avatar marouanekadiri commented on May 24, 2024 1

Hey @rikinshah23,

These issues are fixed on version 0.2.11.
Now regarding your example, you can pass expandedKey if you're using a keyExtractor prop or expandedIndex if you want to use index. This will expand the desired element.

from accordion-collapse-react-native.

rikinshah23 avatar rikinshah23 commented on May 24, 2024

I have updated the version and all those questions gone.
Thanks for your time on this @marouanekadiri

from accordion-collapse-react-native.

rikinshah23 avatar rikinshah23 commented on May 24, 2024

just putting my working code for up and down arrow if someone else needs it.

function _head(item, i) {
    // console.log(i, activeItem)
    return (
      <View
        style={[
          theme.paddingBottom15,
          theme.paddingTop15,
          {
            backgroundColor: (i === activeItem ?
              '#f4f4f4' : '#fff')
          }]}>
        <View
          style={
            [theme.flexDirectionRow,
            theme.justifyContentSpaceBetween,
            theme.alignItemsCenter,
            styles.FAQsubView
            ]}>
          <Text style={[styles.FAQTitle,]}>{item.title}</Text>
          {i === activeItem ?
            <Ionicons
              name="ios-arrow-down"
              size={15}
              color='#333'
            /> :
            <Ionicons
              name="ios-arrow-up"
              size={15}
              color='#333'
            />
          }
        </View>
      </View>
    )
  }

for expandedIndex prop : this shows item at 0 index expanded on load.

   <AccordionList
          expandedIndex={0}
          onToggle={(item, index) => _onClick(item, index)}
          list={filteredFAQSections}
          header={_head}
          body={_body}
        />

from accordion-collapse-react-native.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.