Baserow mobile version with baserow-js and react-native

I’m thinking of making a mobile version with react native and axios and thus have a mobile baserow version, what do you think?

Feature

Baserow mobile version with baserow-js(axios) and react-native

Idea, MVP - Source Code

import React from 'react';
import { Text, View } from 'react-native';
import { styles } from './styles';

function apiLogin (domain, token){ 
  axios({url: domain, headers: { Authorization: "Token {token}"}})
}

const BaserowMobile =()=> {
apiLogin("https://api.baserow.io", "YOUR_API_KEY") 
  return (
    <View style={styles.container}>
      <Text>
        Login Call
      </Text>
    </View>
  );
}

export default BaserowMobile;

Reference

1 Like

Hey! One peice of advice I would have approaching this is given Baserow’s frontend is written using Vue and not react I would strongly suggest trying something like https://vue-native.io/ first instead of react native. I’m not sure how good vue native is yet but otherwise you will have to do a laarge amount of extra work rewriting pretty much the entire frontend from Vue to react.

1 Like

It’s a great idea. So, this was thinking for mobile, Baserow’s frontend?

I was thinking about using a graphical library in vuejs for mobile.