Wednesday, August 12Digital Marketing Journals

Tag: boarding

Expo, React native… on boarding chatbot : Part one | by Rinaldo Stevenazzi | Nov, 2021
best chatbot, chatbot, chatbot app, chatbot online, chatbot website, chatbots, creating chatbots, expo, react, react-native, robot chat

Expo, React native… on boarding chatbot : Part one | by Rinaldo Stevenazzi | Nov, 2021

Users and bot are both use bubbles to display messages, but both bubbles are not the same. To simulate a discussion we need to find a way to make each message display independently with a delay. ChatBot bubble need animation before show message.We need to take all this specification to build our factory.For this part we create a bubble component, user-bubble, and the factory component, bubbles-factory. Finally we display them in a screen named Chat-bot.User-bubbleIt’s a simple component that displays the message we pass in its props (data) and some styling to match the design. I added an opening animation using the native react library, animated. I used animated’s parallel method to start an array of animations, opacity and x position.const UserBubble = ({ data }) => {const positionAnim...
Expo, React native… on boarding chatbot : Part two | by Rinaldo Stevenazzi | Nov, 2021
ai bot, ai chat, ai chatbot, best chatbot, chatbot, chatbot ai, chatbot app, chatbot online, chatbot website, conversation with ai, creating chatbots, expo, google chat bots, JavaScript, react, react-native, robot chat

Expo, React native… on boarding chatbot : Part two | by Rinaldo Stevenazzi | Nov, 2021

As I explained in the first part, the chatbot and the user use bubbles, but there is a big difference… this famous animation.This little animation gives life to the chat, and allows to simulate an interaction with a person and not a machine.For this animation, we will create 2 components.The first one, chat-typing which will be the animation component. A kind of animated bubble with an opening and closing animation.The second component, chat-bubble, will look like the user-bubble but with the management of the chat-typing component.At the end we will modified the chat-bot screen created in the part one, to used the chat-bubble component.Let’s take a closer look at the design.We can see 3 black circles, spaced one from the other, and with different opacity. You have to imagine this animated...