Giter VIP home page Giter VIP logo

firebaseui's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

firebaseui's Issues

compile 'com.firebase.firebase-ui:0.2.0' is not working

README.md states
compile 'com.firebase.firebase-ui:0.2.0' to be used for gradle. However this is not working for me. So I used
compile 'com.firebaseui:firebase-ui:0.2.0' after checking Maven Central.

I'm new to gradle builds. I would like to confirm the correct dependency.

FirebaseTableViewDataSource doesn't work with prototype cells if you use the initWithRef constructor. IBOutlets are nil and/or custom cell class cast error

There is a bug in the following constructor on the FirebaseTableViewDataSource:

- (__NON_NULL instancetype)initWithRef:(__NON_NULL Firebase *)ref
                            modelClass:(__NULLABLE Class)model
              prototypeReuseIdentifier:(__NON_NULL NSString *)identifier
                                  view:(__NON_NULL UITableView *)tableView;

The constructor reads as

- (instancetype)initWithRef:(Firebase *)ref
                 modelClass:(Class)model
   prototypeReuseIdentifier:(NSString *)identifier
                       view:(UITableView *)tableView {
return [self initWithQuery:ref
                  modelClass:model
                   cellClass:nil
         cellReuseIdentifier:identifier
                        view:tableView];
}

The constructor should set the hasPrototypeCell to true as follows

- (instancetype)initWithRef:(Firebase *)ref
                 modelClass:(Class)model
   prototypeReuseIdentifier:(NSString *)identifier
                       view:(UITableView *)tableView {
self.hasPrototypeCell = YES;  
return [self initWithQuery:ref
                  modelClass:model
                   cellClass:nil
         cellReuseIdentifier:identifier
                        view:tableView];
}

which it does not. As a result registerClass gets called from within the initWithRef which prevents interface builder prototype cells from working. When the cells are dequeued they are not connected to the prototype cells. Seems to be an oversight as the the other constructors which have prototypeReuseIdentifier do set the hasPrototypeCell to yes to specifically avoid this.

pagination/infinite scroll

I'm new in firebase.
Is Infinite scroll (or pagination) realized?
If not, how can i implement infinite scroll in my android app?
Please save my day!!!

Sorry for my english

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.