0

I am new to react native. I am writing a weather app with API on website https://darksky.net. How can i display weather data for the next 24 hours and next 7 days?

4

1 回答 1

0

我为此使用了这个https://github.com/njwest/react-native-weather天气组件。

使用 npm 安装i --save react-native-weather

用法:

import { WeatherWidget } from 'react-native-weather';

render() {
  return(
    <WeatherWidget
      api={"your-DarkSky.net-api-here"}
      lat={"lat"}
      lng={"lng"}
      />
  );
}

真的很容易使用,只需阅读文档

于 2018-01-07T04:01:08.443 回答