Files
vf_react/argon-pro-react-native/screens/Agreement.js
2026-01-13 15:10:13 +08:00

61 lines
2.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import { ScrollView, StyleSheet } from "react-native";
import { Block, Text, theme } from "galio-framework";
import argonTheme from "../constants/Theme";
export default class Agreement extends React.Component {
render() {
return (
<Block flex style={{ position: "relative" }}>
<ScrollView
showsVerticalScrollIndicator={false}
contentContainerStyle={styles.agreements}
overScrollMode="always"
>
<Text style={{ fontFamily: 'open-sans-bold' }} size={16} color={argonTheme.COLORS.TEXT}>
It all started in the early 1970s, when, floundering a bit in her
post-college life, she landed a gig at WBFO, a radio station in
Buffalo. There she would call subjects and interview them for the
program she hosted, This Is Radio. She moved to Philadelphia in
1975 to host Fresh Air, the brainchild of a colleague from WBFO.
</Text>
<Text
style={{ fontFamily: 'open-sans-regular' }}
size={16}
color={argonTheme.COLORS.TEXT}
style={{ paddingTop: 9 }}
>
Ms. Gross brings a combination of empathy and rigorous preparation
to the job. I read, watch or listen to as much of the persons work
as possible, so I have an understanding of what makes them, or their
story, important, she said. I try to clarify in my own mind why
this person matters, and why its worthy of our listeners time.
</Text>
<Text
style={{ fontFamily: 'open-sans-regular' }}
size={16}
color={argonTheme.COLORS.TEXT}
style={{ paddingTop: 9 }}
>
One thing she does not allow of her interview subjects, however, is
input on the edit. When the interview is over, you dont have a
chance to call back and say, Well I like my answer to this, I dont
like my answer to that, can you edit that out, she said. (As
someone who has been interviewed by Ms. Gross, I would like to say
that I wish I hadnt insisted that her cats hate her. That said, I
never asked for my comment to be removed from that particular
episode of Fresh Air.)
</Text>
</ScrollView>
</Block>
);
}
}
const styles = StyleSheet.create({
agreements: {
padding: theme.SIZES.BASE
}
});