This file contains hidden or 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 from "react"; | |
import { | |
LayoutChangeEvent, | |
PanResponder, | |
PanResponderGestureState | |
} from "react-native"; | |
import styled from "styled-components"; | |
type StateType = { | |
barHeight: number | null, |
This file contains hidden or 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
from rest_framework import serializers | |
from snippets.models import Snippet, LANGUAGE_CHOICES, STYLE_CHOICES | |
from django.contrib.auth.models import User | |
class SnippetSerializer(serializers.ModelSerializer): | |
class Meta: | |
model = Snippet | |
fields = ('id', 'title', 'code', 'linenos', 'language', 'style', 'owner') |