Giter Club home page Giter Club logo

Comments (4)

finnmerlett avatar finnmerlett commented on July 29, 2024 1

I found a solution that seemed to work pefectly for me here: facebook/react-native#23693 (comment)

It essentially boils down to - load a full-size view component at your app root, then get the dimensions from the onLayout prop's call argument e.nativeEvent.layout.

Here's a minimal TypeScript hook for ease of use:

import React, { useContext, useState } from "react";
import { Dimensions, LayoutRectangle, View } from "react-native";

type LayoutSize = Pick<LayoutRectangle, "width" | "height">;
const ScreenDimensionsContext = React.createContext<LayoutSize | null>(null);

export const useActualDimensions = () => {
  const dimensions = useContext(ScreenDimensionsContext);
  if (!dimensions) throw new Error("useDimensions hook must be used inside provider");
  return dimensions;
};

interface ScreenDimensionsProviderProps {
  children: React.ReactNode;
}
export function ActualDimensionsProvider({ children }: ScreenDimensionsProviderProps) {
  const [dimensions, setDimensions] = useState<LayoutSize>(Dimensions.get("window"));
  return (
    <ScreenDimensionsContext.Provider value={dimensions}>
      <View style={{flex: 1}} onLayout={(e) => setDimensions(e.nativeEvent.layout)}>
        {children}
      </View>
    </ScreenDimensionsContext.Provider>
  );
}

from react-native-extra-dimensions-android.

Sunhat avatar Sunhat commented on July 29, 2024

@JeffreyVanelderenACA Thanks for letting me know. I'll look at testing this on the latest RN version, but likely in the New Year. I've a lot of different on-going projects that require my attention.

from react-native-extra-dimensions-android.

KevinvdBurg avatar KevinvdBurg commented on July 29, 2024

I had the same feeling as @JeffreyVanelderenACA, I was looking for an alternative but could not find any.

from react-native-extra-dimensions-android.

lyswhut avatar lyswhut commented on July 29, 2024

Any news?

from react-native-extra-dimensions-android.

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.