Skip to content

Commit

Permalink
docs: blogpost for 1.5.0 (#138)
Browse files Browse the repository at this point in the history
## πŸ“œ Description

Added blogpost for upcoming `1.5.0` version.

## πŸ’‘ Motivation and Context

Just to make people aware about a new release and new features in this
release πŸ€·β€β™‚οΈ

## πŸ“’ Changelog

### Docs
- added a new blogpost;

## πŸ€” How Has This Been Tested?

Tested on localhost:3000 πŸ™‚ 

## πŸ“Έ Screenshots (if appropriate):

<img width="782" alt="image"
src="https://user-images.githubusercontent.com/22820318/230712848-46b3b543-894f-4161-abc5-1f0003b67567.png">

## πŸ“ Checklist

- [x] CI successfully passed
  • Loading branch information
kirillzyusko committed Apr 10, 2023
1 parent f0d9094 commit 7457167
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/blog/2023-04-10-interactive-keyboard/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
slug: interactive-keyboard
title: Interactive keyboard support
authors: [kirill]
tags: [react-native, keyboard, interactive, android, ios]
---

I'm excited to announce that the upcoming release of `react-native-keyboard-controller`, version `1.5.0`, will include a new feature that allows users to control the position of the keyboard on the screen via gestures. This new interactive keyboard feature will make it easier for users to interact with the keyboard in a more natural and intuitive way, improving the overall user experience of your React Native app.

import Lottie from 'lottie-react';
import lottie from '../../src/components/HomepageFeatures/interactive.json';

<div style={{ display: 'flex', justifyContent: 'center', marginBottom: 20 }}>
<Lottie animationData={lottie} style={{ width: 400, height: 400 }} loop />
</div>

<!--truncate-->

The interactive keyboard feature is customizable on Android πŸ€–, allowing developers to define how the gesture controls the keyboard position and how the view should be animated when the keyboard is moved. This new feature is particularly useful for chat and other apps that require precise control over the position of the keyboard. The addition of this new interactive keyboard feature will further enhance the library's capabilities and provide a more natural and intuitive user experience.

Stay tuned for more updates and be sure to check out our documentation for more information on how to use this new feature in your React Native app.

Thank you for choosing `react-native-keyboard-controller`! 😊

0 comments on commit 7457167

Please sign in to comment.