This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title>@ViewData["Title"] - CUBICS</title> | |
<!-- plugins:css --> | |
<link rel="stylesheet" href="~/assets/vendors/mdi/css/materialdesignicons.min.css" /> | |
<link rel="stylesheet" href="~/assets/vendors/flag-icon-css/css/flag-icon.min.css"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Help: Introduction to the Script Component | |
/* The Script Component allows you to perform virtually any operation that can be accomplished in | |
* a .Net application within the context of an Integration Services data flow. | |
* | |
* Expand the other regions which have "Help" prefixes for examples of specific ways to use | |
* Integration Services features within this script component. */ | |
#endregion | |
#region Namespaces | |
using System; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from 'react'; | |
import { Text, View, FlatList, ActivityIndicator, Image } from 'react-native'; | |
import { StyleType, ThemedComponentProps, ThemeType, withStyles } from '@kitten/theme'; | |
import SvgUri from 'react-native-svg-uri'; | |
import InterestsMockup from '../../../DataAccess/mockups/InterestsMockup'; | |
import Interest from '../../../DataAccess/Interest/Interest'; | |
import { TouchableOpacity } from 'react-native-gesture-handler'; | |
import { CheckBox } from 'react-native-ui-kitten'; | |
import { boolean } from 'yup'; | |
import { handler } from 'firebase-functions'; |