Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix android statusbar translucency #374

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update codestyle
  • Loading branch information
DragonSpirit committed Oct 14, 2019
commit dce3fb5bb780d9b364b357e04596ac15864c74fb
4 changes: 2 additions & 2 deletions App/Screens/ShareScreen/ShareScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
// along with Sh**t! I Smoke. If not, see <http:https://www.gnu.org/licenses/>.

import * as Sharing from 'expo-sharing';
import React, { createRef, useEffect, useContext } from 'react';
import React, { createRef, useContext, useEffect } from 'react';
import { Platform, Share, StyleSheet, View } from 'react-native';
import { captureRef } from 'react-native-view-shot';
import { NavigationInjectedProps } from 'react-navigation';
import { Button } from '../../components';
import { i18n } from '../../localization';
import { ApiContext } from '../../stores';
import * as theme from '../../util/theme';
import { ShareImage } from './ShareImage';
import { ApiContext } from '../../stores';

type ShareScreenProps = NavigationInjectedProps;

Expand Down