Skip to content

Instantly share code, notes, and snippets.

View halilb's full-sized avatar

Halil Bilir halilb

View GitHub Profile
import React, { useState } from 'react'
import { StyleSheet, Text, ScrollView, Button } from 'react-native'
import TextField from './components/TextField'
export default function App() {
const [value, setValue] = useState('')
const [error, setError] = useState<string | null>(null)
return (
<ScrollView contentContainerStyle={styles.content}>

Privacy Policy

built the Eksielma app as a Free app. This SERVICE is provided by at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Eksielma unless otherwise defined in this Privacy Policy.

/*
* Description:
* validBraces takes a string of braces,
* and determines if the order of the braces is valid.
* validBraces should return true if the string is valid,
* and false if it's invalid.
*
* Test Cases:
* validBraces( "(){}[]" ) => returns true
* validBraces( "(}" ) => returns false