Advertisement
jevixlugya

Untitled

Oct 19th, 2022
275
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 108.50 KB | Source Code | 0 0
  1. #:import get_color_from_hex kivy.utils.get_color_from_hex
  2. <Welcome>:
  3.     name:'Welcome'
  4.     canvas.before:
  5.         Rectangle:
  6.             pos: self.pos
  7.             size: self.size
  8.             source: 'parks/lion.jpg'
  9.  
  10.  
  11.  
  12.     MDBoxLayout:
  13.         orientation:'vertical'
  14.         padding:10
  15.         spacing:10
  16.        
  17.         Image:
  18.             source:'parks/MR K LOGO3.png'
  19.             pos_hint:{'center_x':.5,'center_y':.5}
  20.             size_hint:1,1
  21.         MDLabel:
  22.             text:'Hi,\n   Welcome to MR.K Travel And Tourism Uganda '
  23.             font_size:27
  24.             color:app.theme_cls.primary_color
  25.             font_name:'fonts/popins.ttf'
  26.             adaptive_height:True
  27.             outline:True
  28.             outline_color:0,0,0,1
  29.             outline_width:2
  30.             adaptive_height:True
  31.             font_style:'H6'
  32.  
  33.         MDLabel:
  34.             text:
  35.                 'our service is fast and good;\n '\
  36.                 "We offer services like; touring,self driving , we rent spacial cars "\
  37.                 ",traveling, we rent wedding cars for wedding ceremonies ; "\
  38.                 "MR. K Travel And Tourism Uganda says travel and tourism is a good idea, so "\
  39.                 "come deal with us , We will travel and tour Uganda with you. we book hostels, lodges for our travelers and tourists\n\n"\
  40.                 "Feel free to contact us for more information"
  41.  
  42.             font_size:20          
  43.             #color:0,1,0,1
  44.             font_name:'fonts/popins.ttf'
  45.             adaptive_height:True
  46.             outline:True
  47.             outline_color:1,1,1,1
  48.             outline_width:1
  49.             adaptive_height:True
  50.             font_style:'H6'
  51.  
  52.  
  53.  
  54.         MDFloatLayout:
  55.                
  56.             MDRaisedButton:
  57.                 text:'Next'
  58.                 on_press:root.manager.current=('home')
  59.                 md_bg_color:app.theme_cls.primary_color
  60.                 pos_hint:{'center_x':.9,'center_y':.2}
  61.                
  62.  
  63.  
  64.    
  65. <About>:
  66.     orientation: "vertical"
  67.     spacing: "12dp"
  68.     size_hint_y: None
  69.     height: "120dp"
  70.     md_bg_color:app.theme_cls.primary_color
  71.     MDLabel:
  72.         text:
  73.             "MR. K Travel And Tour Uganda\n"\
  74.             "Is a Travel and Tour campany in Uganda "\
  75.             "we offer services like; touring, traveling , rent cars ,"\
  76.             "spacial cars for any journey "\
  77.             "in Uganda. just contact us "
  78.  
  79.  
  80.         adaptive_height:True
  81.         color:app.theme_cls.primary_color
  82.         bold:True
  83.         font_name:'fonts/popins.ttf'
  84.  
  85.  
  86.  
  87. <Content>
  88.     orientation: "vertical"
  89.     spacing: "12dp"
  90.     size_hint_y: None
  91.     height: "120dp"
  92.     md_bg_color:app.theme_cls.primary_color
  93.     MDLabel:
  94.         text:"Email:Michaelkagulire@gmail.com\nCall: +256754045576,+256759142381 or whatsupp\nFeel free to contact us and talk to us for a proper preperations "
  95.         adaptive_height:True
  96.         color:app.theme_cls.primary_color
  97.         bold:True
  98.         font_name:'fonts/popins.ttf'
  99.  
  100.  
  101.  
  102.  
  103.  
  104. UI:
  105.     Welcome:
  106.     MainScreen:
  107.     ParksScreen:
  108.     Rivers:
  109.     Mount:
  110.     Dams:
  111.     Lakes:
  112.     Others:
  113.    
  114.  
  115.  
  116. <MainScreen>:
  117.     name:'home'
  118.     MDNavigationLayout:
  119.         ScreenManager:
  120.             MDScreen:
  121.                 MDBoxLayout
  122.                     orientation:'vertical'
  123.                     MDToolbar:
  124.                         title: "MR.K Travel And Tour Uganda"
  125.                         elevation: 10
  126.                         #md_bg_color: get_color_from_hex("#e7e4c0")
  127.                         specific_text_color: get_color_from_hex("#4a4939")
  128.                         right_action_items: [["logout", lambda x: app.stop()]]
  129.                         left_action_items:
  130.                             [['menu', lambda x: nav_drawer.set_state("open")]]
  131.  
  132.                     MDBoxLayout:
  133.                         size_hint_y:1/9.5
  134.                         orientation:'vertical'
  135.                         padding:'20dp','20dp','20dp','20dp'        
  136.                         MDLabel:
  137.                             text:'Visited Places;'
  138.                             adaptive_height:True
  139.                             bold:True
  140.                             font_style:'Subtitle2'
  141.                             font_size:20
  142.                             color:app.theme_cls.primary_color
  143.  
  144.                     ScrollView:
  145.                         size:self.size
  146.                         size_hint: 1,1
  147.                         bar_width:4
  148.                         bar_color:app.theme_cls.primary_color
  149.                         MDGridLayout:
  150.                             md_bg_color:app.theme_cls.primary_color
  151.                             size_hint_y: None
  152.                             height:self.minimum_height
  153.                             width:self.minimum_width
  154.                             cols:2
  155.                             padding:5
  156.                             spacing:10
  157.  
  158.                             MDCard:
  159.                                 orientation:'vertical'
  160.                                 elevation:80
  161.                                 height:210
  162.                                 size_hint:1,None
  163.                                 border_radius:25
  164.                                 radius:36, 36, 36, 36
  165.                                 elevation:25
  166.                                 ripple_behavior:True
  167.                                 #md_bg_color:1,1,0,.5
  168.                                 on_press: root.manager.current='parks'
  169.                                 FitImage:
  170.                                     source:'parks/Kibale-Forest.jpg'
  171.                                     radius: 36, 36, 0, 0
  172.                                 MDLabel:
  173.                                     text:'National Parks'
  174.                                     pos_hint:{'center_x':.7}
  175.                                     font_size:27
  176.                                     font_style:'H6'
  177.                                     color:app.theme_cls.primary_color
  178.                                     size_hint_y:.2
  179.                                    
  180.  
  181.                             MDCard:
  182.                                 orientation:'vertical'
  183.                                 elevation:20
  184.                                 height:210
  185.                                 size_hint:1,None
  186.                                 border_radius:25
  187.                                 radius:36, 36,36, 36
  188.                                 ripple_behavior:True
  189.                                 #md_bg_color:1,1,0,.5
  190.                                 on_press: root.manager.current='rivers'
  191.                                 FitImage:
  192.                                     source:'parks/Nile-river.jpg'
  193.                                     pos_hint:{'center_x':.5}
  194.                                     radius: 36, 36, 0, 0
  195.                                 MDLabel:
  196.                                     text:'Rivers'
  197.                                     pos_hint:{'center_x':.8}
  198.                                     font_size:25
  199.                                     font_style:'H6'
  200.                                     color:app.theme_cls.primary_color
  201.                                     size_hint_y:.2
  202.  
  203.                             MDCard:
  204.                                 orientation:'vertical'
  205.                                 elevation:20
  206.                                 height:210
  207.                                 size_hint:1,None
  208.                                 border_radius:25
  209.                                 radius:36, 36, 36, 36
  210.                                 ripple_behavior:True
  211.                                 #md_bg_color:1,1,0,.5
  212.                                 on_press: root.manager.current='Mountains'
  213.                                 FitImage:
  214.                                     source:'parks/Mt-Rwenzori.jpg'
  215.                                     radius:36, 36, 0, 0
  216.                                 MDLabel:
  217.                                     text:'Mountains'
  218.                                     pos_hint:{'center_x':.8,'center_y':.3}
  219.                                     font_size:25
  220.                                     font_style:'H6'
  221.                                     color:app.theme_cls.primary_color
  222.                                     size_hint_y:.2
  223.  
  224.  
  225.                             MDCard:
  226.                                 orientation:'vertical'
  227.                                 elevation:20
  228.                                 height:210
  229.                                 size_hint:1,None
  230.                                 border_radius:25                                        
  231.                                 radius:36, 36, 36, 36
  232.                                 ripple_behavior:True
  233.                                 #md_bg_color:1,1,0,.5
  234.                                 on_press: root.manager.current='dams'
  235.                                 FitImage:
  236.                                     source:'parks/owen falls dam.jpg'
  237.                                     radius:36, 36, 0, 0
  238.                                 MDLabel:
  239.                                     text:'Dams/WaterFalls'
  240.                                     pos_hint:{'center_x':.6}
  241.                                     font_size:25
  242.                                     font_style:'H6'
  243.                                     color:app.theme_cls.primary_color
  244.                                     size_hint_y:.2
  245.                             MDCard:
  246.                                 orientation:'vertical'
  247.                                 elevation:20
  248.                                 height:210
  249.                                 size_hint:1,None
  250.                                 border_radius:25
  251.                                 radius:36, 36, 36, 36
  252.                                 ripple_behavior:True
  253.                                 #md_bg_color:1,1,0,.5
  254.                                 on_press: root.manager.current='lakes'
  255.                                 FitImage:
  256.                                     source:'parks/lake victoria.jpg'
  257.                                     radius:36, 36, 0, 0
  258.                                 MDLabel:
  259.                                     text:'Lakes'
  260.                                     pos_hint:{'center_x':.8}
  261.                                     font_size:25
  262.                                     color:app.theme_cls.primary_color
  263.                                     font_style:'H6'
  264.                                     size_hint_y:.2
  265.  
  266.                             MDCard:
  267.                                 orientation:'vertical'
  268.                                 elevation:20
  269.                                 height:210
  270.                                 size_hint:1,None
  271.                                 border_radius:25
  272.                                 radius:36, 36, 36, 36
  273.                                 ripple_behavior:True
  274.                                 #md_bg_color:1,1,0,.5
  275.                                 on_press: root.manager.current='others'
  276.                                 FitImage:
  277.                                     source:'parks/eqator.jpg'
  278.                                     radius:36, 36, 0, 0
  279.                                 MDLabel:
  280.                                     text:'Others'
  281.                                     pos_hint:{'center_x':.8}
  282.                                     font_size:25
  283.                                     color:app.theme_cls.primary_color
  284.                                     font_style:'H6'
  285.                                     size_hint_y:.2
  286.                             Widget:
  287.                             Widget:        
  288.                             MDLabel:
  289.                                 text:'More services;'
  290.                                 font_size:20
  291.                                 bold:True
  292.                                 font_name:'fonts/popins.ttf'
  293.                                 font_style:'H6'
  294.                                 size_hint_y:.2
  295.  
  296.                             MDLabel:
  297.                                 text:''
  298.                                 font_size:25
  299.                                 color:app.theme_cls.primary_color
  300.                                 font_style:'H6'
  301.                                 size_hint_y:.2
  302.                             Widget:
  303.                             Widget:                                                            
  304.  
  305.                             MDSeparator:
  306.                             MDSeparator:
  307.                             MDCard:
  308.                                 orientation:'vertical'
  309.                                 elevation:20
  310.                                 height:210
  311.                                 size_hint:1,None
  312.                                 border_radius:25
  313.                                 radius:36, 36,36, 36
  314.                                 ripple_behavior:True
  315.                                 #md_bg_color:1,1,0,.5
  316.                                 #on_press: root.manager.current='rivers'
  317.                                 CustomImageTile:
  318.                                     source:'parks/safari-van-uganda.jpg'
  319.                                     text: '[size=26]Tour Van[/size]\n[size=14]for tourists and travelers[/size]'
  320.                                     radius:20
  321.                                     pos_hint:{'center_x':.5}
  322.                                     size_hint:1,1
  323.                                    
  324.                            
  325.  
  326.                             MDCard:
  327.                                 orientation:'vertical'
  328.                                 elevation:20
  329.                                 height:210
  330.                                 size_hint:1,None
  331.                                 border_radius:25
  332.                                 radius:36, 36, 36, 36
  333.                                 ripple_behavior:True
  334.                                 #md_bg_color:1,1,0,.5
  335.                                 #on_press: root.manager.current='Mountains'
  336.                                 CustomImageTile:
  337.                                     source:'parks/safari cars.jpg'
  338.                                     text: '[size=26]Safari cars[/size]\n[size=14]visiting National Parks[/size]'
  339.                                     radius:20
  340.                                     size_hint:1,1
  341.                                     radius:36, 36, 0, 0
  342.                            
  343.  
  344.  
  345.                             MDCard:
  346.                                 orientation:'vertical'
  347.                                 elevation:20
  348.                                 height:210
  349.                                 size_hint:1,None
  350.                                 border_radius:25                                        
  351.                                 radius:36, 36, 36, 36
  352.                                 ripple_behavior:True
  353.                                 #md_bg_color:1,1,0,.5
  354.                                 #on_press: root.manager.current='dams'
  355.                                 CustomImageTile:
  356.                                     source:'parks/coaster-bus-uganda.jpg'
  357.                                     text: '[size=26]coasters[/size]\n[size=14]used for transportation[/size]\n[size=14]schools, groups.[/size]'
  358.                                     radius:20
  359.                                     size_hint:1,1
  360.                                     radius:36, 36, 0, 0
  361.              
  362.                             MDCard:
  363.                                 orientation:'vertical'
  364.                                 elevation:20
  365.                                 height:210
  366.                                 size_hint:1,None
  367.                                 border_radius:25
  368.                                 radius:36, 36, 36, 36
  369.                                 ripple_behavior:True
  370.                                 #md_bg_color:1,1,0,.5
  371.                                 #on_press: root.manager.current='lakes'
  372.                                 CustomImageTile:
  373.                                     source:'parks/wed car.jpg'
  374.                                     text: '[size=26]Wedding cars[/size]\n[size=14]Rent wedding cars from us[/size]'
  375.                                     radius:20
  376.                                     size_hint:1,1
  377.                                     radius:36, 36, 0, 0
  378.                                
  379.  
  380.                             MDCard:
  381.                                 orientation:'vertical'
  382.                                 elevation:20
  383.                                 height:210
  384.                                 size_hint:1,None
  385.                                 border_radius:25
  386.                                 radius:36, 36, 36, 36
  387.                                 ripple_behavior:True
  388.                                 #md_bg_color:1,1,0,.5
  389.                                # on_press: root.manager.current='others'
  390.                                 CustomImageTile:
  391.                                     source:'parks/spacial car.jpg'
  392.                                     text: '[size=26]spacials cars[/size]\n[size=14]Rent spacial cars from us[/size]'
  393.                                     radius:20
  394.                                     size_hint:1,1
  395.                                     radius:36, 36, 0, 0
  396.                    
  397.  
  398.                             MDCard:
  399.                                 orientation:'vertical'
  400.                                 elevation:20
  401.                                 height:210
  402.                                 size_hint:1,None
  403.                                 border_radius:25
  404.                                 radius:36, 36, 36, 36
  405.                                 ripple_behavior:True
  406.                                 #md_bg_color:1,1,0,.5
  407.                                # on_press: root.manager.current='others'
  408.                                 CustomImageTile:
  409.                                     source:'parks/party.jpg'
  410.                                     text: '[size=26]party times[/size]\n[size=14]for Entertainment and enjoying[/size]'
  411.                                     radius:20
  412.                                     size_hint:1,1
  413.                                     radius:36, 36, 0, 0                            
  414.  
  415.  
  416.         MDNavigationDrawer:
  417.             id: nav_drawer
  418.             md_bg_color: app.theme_cls.primary_color
  419.             opening_transition: 'out_bounce'
  420.             opening_time:1
  421.             closing_transition: 'in_out_elastic'
  422.             closing_time:1
  423.             MDBoxLayout:        
  424.                 orientation: "vertical"
  425.                 padding: "5dp"
  426.                 spacing: "2dp"
  427.                 size_hint_y:1
  428.  
  429.                 CustomImageTile:
  430.                     source:'parks/MR K2.jpg'
  431.                     text: '[size=26]contact us via;[/size]\n[size=14]Email: Michaelkagulire@gmail.com[/size]\n[size=14]Call: +256754045576,+256759142381 or whatsupp[/size]'
  432.                     radius:20
  433.                     size_hint:1,1    
  434.            
  435.                 ScrollView:
  436.                     MDBoxLayout:
  437.                         orientation:'vertical'                 
  438.                         OneLineListItem:
  439.                             text:''
  440.  
  441.  
  442.                         OneLineListItem:
  443.                             text:'Change theme color'
  444.                             on_press:root.changecolor()
  445.                      
  446.  
  447.                         TwoLineListItem:
  448.                             text:'About US'
  449.                             secondary_text:'about MR.K Travel And Tour Uganda'
  450.                             on_release:root.showdialogabout()
  451.  
  452.                         ThreeLineListItem:
  453.                             text:'Developed by;'
  454.                             secondary_text:'L.S.Jevix Software UG'
  455.                             tertiary_text: "contact: +256754045576"
  456.                                            
  457.                         Widget:
  458.  
  459.  
  460. <ParksScreen>:
  461.     name:'parks'
  462.     canvas.before:
  463.         Color:
  464.             rgba:1,1,1,1
  465.         Rectangle:
  466.             size:self.size 
  467.  
  468.     MDBoxLayout:
  469.         orientation:'vertical'
  470.         padding:'5dp'    
  471.  
  472.  
  473.         ScrollView:
  474.             bar_width:4
  475.             bar_color:app.theme_cls.primary_color
  476.             MDBoxLayout:
  477.                 orientation:'vertical'
  478.                 padding:'24dp','24dp','24dp','24dp'
  479.                 size_hint_y: None
  480.                 width:self.minimum_width
  481.                 height:self.minimum_height
  482.                 spacing:10
  483.                 md_bg_color:app.theme_cls.primary_color
  484.                 MDIconButton:
  485.                     icon:'arrow-left'
  486.                     on_press:root.manager.current='home'
  487.                 MDLabel:
  488.                     text: "National Parks;"
  489.                     adaptive_height:True
  490.                     bold:True
  491.                     font_style:'H6'
  492.                     font_size:30
  493.                      
  494.  
  495.                 Widget:
  496.  
  497.                 MDCard:
  498.                     orientation:'vertical'
  499.                     elevation:40
  500.                     height:'750dp'
  501.                     size_hint:1,None
  502.                     padding:5
  503.                     spacing:5
  504.                     radius:36, 36
  505.                     elevation:25
  506.  
  507.                     ripple_behavior:False
  508.                     #on_press: screen_man.current='doors'
  509.                     FitImage:
  510.                         source:'parks/Queen ELI1.jpg'
  511.                         radius: 36, 36
  512.                         size_hint:1,3
  513.  
  514.                        
  515.  
  516.                     MDLabel:
  517.                         text:'Queen Elizabeth National Park'
  518.                         font_size:50
  519.                         halign:'center'
  520.                         outline:True
  521.                         outline_color:1,1,0,1
  522.                         outline_width:1
  523.                         adaptive_height:True
  524.                         font_style:'H6'
  525.                         font_name:'fonts/popins.ttf'
  526.                         color:app.theme_cls.primary_color
  527.  
  528.  
  529.                     MDLabel:
  530.                         text:
  531.                             "One would wonder where Queen Elizabeth National Park is Located. Well, it is found in the western part of Uganda laying between Lakes Gorge and Albert with the Kazinga Channel crossing through its 700 sq mile land area. The park was named after the Queen of England in 1954 following her visit.\n\n"\
  532.                             "The park is home to 618 bird species which is the 6th highest diversity in the world and the highest in Africa making it a perfect destination for Uganda Birding Safaris, in addition to 10 primate species like chimpanzees and 95 mammals including big game."
  533.                         font_size:20
  534.                         bold:True
  535.                         adaptive_height:True
  536.  
  537.                     MDFillRoundFlatButton:
  538.                         text:'Book a tour Now'
  539.                         md_bg_color: app.theme_cls.primary_color
  540.                         size_hint:.8,.3
  541.                         pos_hint:{'center_x':.5}
  542.                         on_release: root.show_simple_dialog()
  543.                            
  544.                                
  545.                 MDCard:
  546.                     orientation:'vertical'
  547.                     elevation:20
  548.                     height:'650dp'
  549.                     size_hint:1,None
  550.                     adaptive_height:True
  551.                     radius:36, 36
  552.                     elevation:25
  553.                     padding:5
  554.                     ripple_behavior:False
  555.                     #md_bg_color:1,1,0,.5
  556.                     #on_press: screen_man.current='doors'
  557.                     FitImage:
  558.                         source:'parks/MURCHISON-FALLS.jpg'
  559.                         radius: 36, 36
  560.                         size_hint:1,3
  561.                     MDLabel:
  562.                         text:'Murchison Falls National Park'
  563.                         font_size:25
  564.                         font_style:'H6'
  565.                         adaptive_height:True
  566.                         font_name:'fonts/popins.ttf'
  567.                         color:app.theme_cls.primary_color
  568.                         halign:'center'
  569.  
  570.                     MDLabel:
  571.                         text:
  572.                             "Also known as the Kabalega National Park, the Murchison Falls National Park is popularly known for having the world’s most powerful waterfall that emits large volumes of water about 300 cubic meters per second or 11,000 ft³/s at a very powerful pressure that cause the surrounding to tremble. The park was first gazetted in 1927 and today is the largest park in Uganda covering an area of 3840 sq km / 1483 sq miles.  It is commonly visited for Uganda Safari Tours because of its diverse safari activities and rich wildlife."
  573.                         font_size:20
  574.                         bold:True
  575.                         adaptive_height:True
  576.  
  577.                     MDFillRoundFlatButton:
  578.                         text:'Book a tour Now'
  579.                         md_bg_color: app.theme_cls.primary_color
  580.                         size_hint:.8,.3
  581.                         pos_hint:{'center_x':.5}
  582.                         on_release:root.show_simple_dialog()
  583.  
  584.                 MDCard:
  585.                     orientation:'vertical'
  586.                     elevation:20
  587.                     height:'520dp'
  588.                     size_hint:1,None
  589.                     #border_radius:25
  590.                     radius:36, 36
  591.                     elevation:25
  592.                     padding:5
  593.                     ripple_behavior:False
  594.                     #md_bg_color:1,1,0,.5
  595.                     #on_press: screen_man.current='doors'
  596.                     FitImage:
  597.                         source:'parks/Lake Mburo2.jpg'
  598.                         radius: 36, 36
  599.                         size_hint:1,3
  600.                     MDLabel:
  601.                         text:'Lake Mburo National Park'
  602.                         font_size:25
  603.                         font_style:'H6'
  604.                         font_name:'fonts/popins.ttf'
  605.                         color:app.theme_cls.primary_color
  606.                         halign:'center'
  607.                         adaptive_height:True
  608.  
  609.                     MDLabel:
  610.                         text:
  611.                             "Lake Mburo National Park is located in Kiruhura District in the Western Region of Uganda, about 30 km (19 mi) east of Mbarara and about 240 km (150 mi) by road west of Kampala.\n"
  612.                         font_size:20   
  613.                         bold:True
  614.                         adaptive_height:True
  615.  
  616.                     MDFillRoundFlatButton:
  617.                         text:'Book a tour Now'
  618.                         md_bg_color: app.theme_cls.primary_color
  619.                         size_hint:.8,.3
  620.                         pos_hint:{'center_x':.5}
  621.                         on_release:root.show_simple_dialog()
  622.  
  623.  
  624.                 MDCard:
  625.                     orientation:'vertical'
  626.                     elevation:20
  627.                     height:'520dp'
  628.                     size_hint:1,None
  629.                     #border_radius:25
  630.                     radius:36, 36
  631.                     elevation:25
  632.                     adaptive_height:True
  633.                     padding:5
  634.                     ripple_behavior:False
  635.                     #md_bg_color:1,1,0,.5
  636.                     #on_press: screen_man.current='doors'
  637.                     FitImage:
  638.                         source:'parks/Kidepo-Valley-National-Park.jpg'
  639.                         radius: 36, 36
  640.                         size_hint:1,3
  641.                     MDLabel:
  642.                         text:'Kidepo Valley National Park'
  643.                         font_size:25
  644.                         font_style:'H6'
  645.                         adaptive_height:True
  646.                         font_name:'fonts/popins.ttf'
  647.                         color:app.theme_cls.primary_color
  648.                         halign:'center'
  649.  
  650.                     MDLabel:
  651.                         text:
  652.                             "Kidepo Valley is in the remote northeast corner of the country. The park has a true wilderness feel and is a great destination for the adventurous traveler. It has excellent wildlife viewing during the Dry season, featuring several species not encountered anywhere else in the country."
  653.                         font_size:20
  654.                         bold:True
  655.                         adaptive_height:True
  656.  
  657.                     MDFillRoundFlatButton:
  658.                         text:'Book a tour Now'
  659.                         md_bg_color: app.theme_cls.primary_color
  660.                         size_hint:.8,.3
  661.                         pos_hint:{'center_x':.5}
  662.                         on_release:root.show_simple_dialog()
  663.  
  664.  
  665.  
  666.                 MDCard:
  667.                     orientation:'vertical'
  668.                     elevation:20
  669.                     height:'750dp'
  670.                     size_hint:1,None
  671.                     #border_radius:25
  672.                     radius:36, 36
  673.                     elevation:25
  674.                     ripple_behavior:False
  675.                     #md_bg_color:1,1,0,.5
  676.                     padding:5
  677.                     #on_press: screen_man.current='doors'
  678.                     FitImage:
  679.                         source:'parks/bwindi-forest-national-park.jpg'
  680.                         radius: 36, 36
  681.                         size_hint:1,3
  682.                     MDLabel:
  683.                         text:'Bwindi Forest National Park'
  684.                         font_size:35
  685.                         font_style:'H6'
  686.                         adaptive_height:True
  687.                         font_name:'fonts/popins.ttf'
  688.                         color:app.theme_cls.primary_color
  689.                         halign:'center'
  690.  
  691.                     MDLabel:
  692.                         text:
  693.                             "Bwindi Impenetrable National Park is located in the southwestern part of Uganda on the rim of the Rift Valley. The hillsides which are mist-covered are sheltered by one of the ancient and very biologically varied rainforests in Uganda that dates back to more than 25,000 years, comprising of about 400 varied plant species. More notably, this “impenetrable forest” in addition protects an predictable 320 population of mountain gorillas – approximately half of the population in the world, among which are a number of habituated groups, that can be tracked by visitors.Bwindi is habitat to more than half the world’s population of Mountain Gorillas"
  694.                         font_size:20
  695.                         bold:True
  696.                         adaptive_height:True
  697.  
  698.                     MDFillRoundFlatButton:
  699.                         text:'Book a tour Now'
  700.                         md_bg_color: app.theme_cls.primary_color
  701.                         size_hint:.8,.3
  702.                         pos_hint:{'center_x':.5}
  703.                         on_release:root.show_simple_dialog()
  704.  
  705.                 MDCard:
  706.                     orientation:'vertical'
  707.                     elevation:40
  708.                     height:'650dp'
  709.                     size_hint:1,None
  710.                     padding:5
  711.                     #border_radius:25
  712.                     radius:36, 36
  713.                     elevation:25
  714.                     ripple_behavior:False
  715.                     #md_bg_color:1,1,0,.5
  716.                     #on_press: screen_man.current='doors'
  717.                     FitImage:
  718.                         source:'parks/kibaale forest.jpg'
  719.                         radius: 36, 36
  720.                         size_hint:1,3
  721.  
  722.                        
  723.  
  724.                     MDLabel:
  725.                         text:'Kibaale National Park'
  726.                         font_size:30
  727.                         halign:'center'
  728.                         outline:True
  729.                         outline_color:1,1,0,1
  730.                         outline_width:1
  731.                         adaptive_height:True
  732.                         font_style:'H6'
  733.                         font_name:'fonts/popins.ttf'
  734.                         color:app.theme_cls.primary_color
  735.  
  736.  
  737.                     MDLabel:
  738.                         text:
  739.                             "Kibale Forest National Park is one of the best safari destinations in Africa for chimpanzee trekking safaris and has the highest number and diversity of primates in East Africa. There are 13 species of primates including chimpanzees living within its 795km2 land cover with the most beautiful and most diversified tracts of tropical forest in the whole of Uganda. The Forest covering predominates in the central and northern part of the park on the raised Fort Portal plateau. At the park’s northern tip, Kibale is highest and stands 1590m above sea level"
  740.                         font_size:20
  741.                         bold:True
  742.                         adaptive_height:True
  743.  
  744.                     MDFillRoundFlatButton:
  745.                         text:'Book a tour Now'
  746.                         md_bg_color: app.theme_cls.primary_color
  747.                         size_hint:.8,.3
  748.                         pos_hint:{'center_x':.5}
  749.                         on_release: root.show_simple_dialog()
  750.                            
  751.                                
  752.                 MDCard:
  753.                     orientation:'vertical'
  754.                     elevation:20
  755.                     height:'650dp'
  756.                     size_hint:1,None
  757.                     #border_radius:25
  758.                     radius:36, 36
  759.                     padding:5
  760.                     elevation:25
  761.                     ripple_behavior:False
  762.                     #md_bg_color:1,1,0,.5
  763.                     #on_press: screen_man.current='doors'
  764.                     FitImage:
  765.                         source:'parks/mgahinga Gorilla.jpg'
  766.                         radius: 36, 36
  767.                         size_hint:1,3
  768.                     MDLabel:
  769.                         text:'Mgahinga Gorilla National Park'
  770.                         font_size:25
  771.                         font_style:'H6'
  772.                         font_name:'fonts/popins.ttf'
  773.                         color:app.theme_cls.primary_color
  774.                         halign:'center'
  775.                         adaptive_height:True
  776.  
  777.                     MDLabel:
  778.                         text:
  779.                             "At just 33.7km2, Mgahinga National Park is Uganda’s smallest national park. Mgahinga Gorilla National Park is located in the southwestern corner of Uganda. The Park covers the northern slopes of the three northernmost Virunga Volcanoes: Mt. Muhavura (4,127 m), Mt. Gahinga (3,474 m), and Mt. Sabinyo (3,645 m). The Park is about 10 km south of Kisoro and is bordered to the south by the Volcanoes National Park of Rwanda and to the west by the Virunga National Park of the Democratic Republic of Congo.\n\n "
  780.                              
  781.                         font_size:20
  782.                         bold:True
  783.                         adaptive_height:True
  784.  
  785.                     MDFillRoundFlatButton:
  786.                         text:'Book a tour Now'
  787.                         md_bg_color: app.theme_cls.primary_color
  788.                         size_hint:.8,.3
  789.                         pos_hint:{'center_x':.5}
  790.                         on_release: root.show_simple_dialog()
  791.  
  792.                 MDCard:
  793.                     orientation:'vertical'
  794.                     elevation:20
  795.                     height:'700dp'
  796.                     size_hint:1,None
  797.                     #border_radius:25
  798.                     radius:36, 36
  799.                     elevation:25
  800.                     padding:5
  801.                     ripple_behavior:False
  802.                     #md_bg_color:1,1,0,.5
  803.                     #on_press: screen_man.current='doors'
  804.                     FitImage:
  805.                         source:'parks/Mount-Elgon-NP-banner.jpg'
  806.                         radius: 36, 36
  807.                         size_hint:1,3
  808.                     MDLabel:
  809.                         text:'Mount Elgon National Park'
  810.                         font_size:25
  811.                         font_style:'H6'
  812.                         adaptive_height:True
  813.                         font_name:'fonts/popins.ttf'
  814.                         color:app.theme_cls.primary_color
  815.                         halign:'center'
  816.  
  817.                     MDLabel:
  818.                         text:
  819.                             "This extinct volcano is one of Uganda’s oldest physical features, first erupting around 24 million years ago\n"\
  820.                             "Mt Elgon was once Africa’s highest mountain, far exceeding Kilimanjaro’s current 5,895m. Millennia of erosion have reduced its height to 4,321m, relegating it to the 4th highest peak in East Africa and 8th on the continent"\
  821.                             "Mt Elgon is home to two tribes, the Bagisu and the Sabiny, with the marginalized Ndorobos forced to dwell deep within the forest of Benet."\
  822.                             "The Bagisu, also known as the BaMasaba, consider Mount Elgon to be the embodiment of their founding father Masaba and refer to the mountain by this name"
  823.                         font_size:20
  824.                         bold:True
  825.                         adaptive_height:True
  826.  
  827.                     MDFillRoundFlatButton:
  828.                         text:'Book a tour Now'
  829.                         md_bg_color: app.theme_cls.primary_color
  830.                         size_hint:.8,.3
  831.                         pos_hint:{'center_x':.5}
  832.                         on_release: root.show_simple_dialog()
  833.  
  834.  
  835.                 MDCard:
  836.                     orientation:'vertical'
  837.                     elevation:20
  838.                     height:'650dp'
  839.                     size_hint:1,None
  840.                     #border_radius:25
  841.                     radius:36, 36
  842.                     elevation:25
  843.                     ripple_behavior:False
  844.                     #md_bg_color:1,1,0,.5
  845.                     padding:5
  846.                     #on_press: screen_man.current='doors'
  847.                     FitImage:
  848.                         source:'parks/rwenzori.jpg'
  849.                         radius: 36, 36
  850.                         size_hint:1,3
  851.                     MDLabel:
  852.                         text:'Mount Rwenzori National Park'
  853.                         font_size:25
  854.                         font_style:'H6'
  855.                         adaptive_height:True
  856.                         font_name:'fonts/popins.ttf'
  857.                         color:app.theme_cls.primary_color
  858.                         halign:'center'
  859.  
  860.                     MDLabel:
  861.                         text:
  862.                             "The Rwenzori Mountains National Park covers nearly 100,000 ha in western Uganda and comprises the main part of the Rwenzori mountain chain, which includes Africa's third highest peak (Mount Margherita: 5,109 m). The region's glaciers, waterfalls and lakes make it one of Africa's most beautiful alpine areas. The park has many natural habitats of endangered species and a rich and unusual flora comprising, among other species, the giant heather."
  863.                         font_size:20
  864.                         adaptive_height:True
  865.                         bold:True
  866.  
  867.                     MDFillRoundFlatButton:
  868.                         text:'Book a tour Now'
  869.                         md_bg_color: app.theme_cls.primary_color
  870.                         size_hint:.8,.3
  871.                         pos_hint:{'center_x':.5}
  872.                         on_release: root.show_simple_dialog()
  873.  
  874.  
  875.  
  876.                 MDCard:
  877.                     orientation:'vertical'
  878.                     elevation:20
  879.                     height:'700dp'
  880.                     size_hint:1,None
  881.                     #border_radius:25
  882.                     radius:36, 36
  883.                     elevation:25
  884.                     ripple_behavior:False
  885.                     #md_bg_color:1,1,0,.5
  886.                     padding:5
  887.                     #on_press: screen_man.current='doors'
  888.                     FitImage:
  889.                         source:'parks/semuliki.jpg'
  890.                         radius: 36, 36
  891.                         size_hint:1,3
  892.                     MDLabel:
  893.                         text:'Semuliki National Park'
  894.                         font_size:25
  895.                         font_style:'H6'
  896.                         adaptive_height:True
  897.                         font_name:'fonts/popins.ttf'
  898.                         color:app.theme_cls.primary_color
  899.                         halign:'center'
  900.  
  901.                     MDLabel:
  902.                         text:
  903.                             "Semuliki Forest Reserve was created in 1932 and upgraded to national park status in 1993. "\
  904.                             "It is the only tract of true lowland tropical forest in East Africa, hosting 441 recorded bird species and 53 mammals "\
  905.                             "Large areas of this low-lying park may flood during the wet season, a brief reminder of the time when the entire valley lay at the bottom of a lake for seven million years"\
  906.                             "\nFour distinct ethnic groups live near the park – Bwamba farmers live along the base of the Rwenzori while the Bakonjo cultivate the mountain slopes. Batuku cattle keepers inhabit the open plains and Batwa, pygmies, traditionally hunter gathers, live on the edge of the forest"
  907.                         font_size:20
  908.                         bold:True
  909.                         adaptive_height:True
  910.  
  911.                     MDFillRoundFlatButton:
  912.                         text:'Book a tour Now'
  913.                         md_bg_color: app.theme_cls.primary_color
  914.                         size_hint:.8,.3
  915.                         pos_hint:{'center_x':.5}
  916.                         on_release:root.show_simple_dialog()
  917.  
  918. <Rivers>:
  919.     name:'rivers'
  920.     canvas.before:
  921.         Color:
  922.             rgba:1,1,1,1
  923.         Rectangle:
  924.             size:self.size 
  925.  
  926.     MDBoxLayout:
  927.         orientation:'vertical'
  928.         padding:'5dp'    
  929.  
  930.  
  931.         ScrollView:
  932.             bar_width:4
  933.             bar_color:app.theme_cls.primary_color
  934.             MDBoxLayout:
  935.                 orientation:'vertical'
  936.                 padding:'24dp','24dp','24dp','24dp'
  937.                 size_hint_y: None
  938.                 width:self.minimum_width
  939.                 height:self.minimum_height
  940.                 spacing:10
  941.                 md_bg_color:app.theme_cls.primary_color
  942.                 MDIconButton:
  943.                     icon:'arrow-left'
  944.                     on_press:root.manager.current='home'
  945.                 MDLabel:
  946.                     text: "Rivers In Uganda;"
  947.                     adaptive_height:True
  948.                     bold:True
  949.                     font_style:'H6'
  950.                     font_size:30
  951.                      
  952.  
  953.                 Widget:
  954.  
  955.                 MDCard:
  956.                     orientation:'vertical'
  957.                     elevation:40
  958.                     height:'750dp'
  959.                     size_hint:1,None
  960.                     padding:5
  961.                     spacing:5
  962.                     radius:36, 36
  963.                     elevation:25
  964.  
  965.                     ripple_behavior:False
  966.                     #on_press: screen_man.current='doors'
  967.                     FitImage:
  968.                         source:'parks/Nile-river.jpg'
  969.                         radius: 36, 36
  970.                         size_hint:1,3
  971.  
  972.                        
  973.  
  974.                     MDLabel:
  975.                         text:'River Nile'
  976.                         font_size:50
  977.                         halign:'center'
  978.                         outline:True
  979.                         outline_color:1,1,0,1
  980.                         outline_width:1
  981.                         adaptive_height:True
  982.                         font_style:'H6'
  983.                         font_name:'fonts/popins.ttf'
  984.                         color:app.theme_cls.primary_color
  985.  
  986.  
  987.                     MDLabel:
  988.                         text:
  989.                             "The Nile is one of the world's great waterways, at 4,180 miles (6,695 kilometers) generally regarded as the longest river in the world and among the most culturally significant natural formations in human history.[1] Flowing northward from remote sources in the mountains of Ethiopia and central Africa and draining into the Mediterranean Sea, the Nile has flooded seasonally over millennia to provide life-giving fertile soils and irrigation for Egypt's people. The drainage basin of the Nile encompasses about 10 percent of the area of Africa"
  990.                         font_size:20
  991.                         bold:True
  992.                         adaptive_height:True
  993.  
  994.                     MDFillRoundFlatButton:
  995.                         text:'Book a tour Now'
  996.                         md_bg_color: app.theme_cls.primary_color
  997.                         size_hint:.8,.3
  998.                         pos_hint:{'center_x':.5}
  999.                         on_release: root.show_simple_dialog()
  1000.                            
  1001.                                
  1002.                 MDCard:
  1003.                     orientation:'vertical'
  1004.                     elevation:20
  1005.                     height:'650dp'
  1006.                     size_hint:1,None
  1007.                     adaptive_height:True
  1008.                     radius:36, 36
  1009.                     elevation:25
  1010.                     padding:5
  1011.                     ripple_behavior:False
  1012.                     #md_bg_color:1,1,0,.5
  1013.                     #on_press: screen_man.current='doors'
  1014.                     FitImage:
  1015.                         source:'parks/river kafu.jpg'
  1016.                         radius: 36, 36
  1017.                         size_hint:1,3
  1018.                     MDLabel:
  1019.                         text:'River Kafu'
  1020.                         font_size:25
  1021.                         font_style:'H6'
  1022.                         adaptive_height:True
  1023.                         font_name:'fonts/popins.ttf'
  1024.                         color:app.theme_cls.primary_color
  1025.                         halign:'center'
  1026.  
  1027.                     MDLabel:
  1028.                         text:
  1029.                             "The Kafu River which is about 180km in length is located in Western Uganda and flows through the districts of Luwero, Nakaseke, Nakasongola, Kyankwazi, Hoima, and Masindi. Its source is the swamp located approximately 12 kilometers northeast of the village of Kitoma, in Kibaale District, Western Uganda.  It empties into Victoria Nile around Masindi Port in the District of Masindi, Western Uganda."
  1030.                         font_size:20
  1031.                         bold:True
  1032.                         adaptive_height:True
  1033.  
  1034.                     MDFillRoundFlatButton:
  1035.                         text:'Book a tour Now'
  1036.                         md_bg_color: app.theme_cls.primary_color
  1037.                         size_hint:.8,.3
  1038.                         pos_hint:{'center_x':.5}
  1039.                         on_release:root.show_simple_dialog()
  1040.  
  1041.  
  1042.                 MDCard:
  1043.                     orientation:'vertical'
  1044.                     elevation:40
  1045.                     height:'750dp'
  1046.                     size_hint:1,None
  1047.                     padding:5
  1048.                     spacing:5
  1049.                     radius:36, 36
  1050.                     elevation:25
  1051.  
  1052.                     ripple_behavior:False
  1053.                     #on_press: screen_man.current='doors'
  1054.                     FitImage:
  1055.                         source:'parks/katonga river.jpg'
  1056.                         radius: 36, 36
  1057.                         size_hint:1,3
  1058.  
  1059.                        
  1060.  
  1061.                     MDLabel:
  1062.                         text:'River Katonga'
  1063.                         font_size:50
  1064.                         halign:'center'
  1065.                         outline:True
  1066.                         outline_color:1,1,0,1
  1067.                         outline_width:1
  1068.                         adaptive_height:True
  1069.                         font_style:'H6'
  1070.                         font_name:'fonts/popins.ttf'
  1071.                         color:app.theme_cls.primary_color
  1072.  
  1073.  
  1074.                     MDLabel:
  1075.                         text:
  1076.                             "River Katonga with a length of 220 km is located in the south-western part of Uganda. It starts from Lake Victoria and flows, first, northwards into Lake Wamala. The river then flows westwards to empty into Lake George which connects via the Kazinga Channel, with Lake Edward on the border between Uganda and the Democratic Republic of Congo. "\
  1077.  
  1078.                             "The source of River Katonga is located in Lukaya, Kalungu District. River Katonga enters Lake George at Mpanga in Kamwenge District. On its course westwards, the river forms the borders of the following districts: Kalungu District, Bukomansimbi District, Mpigi District, and Butambala District."
  1079.                         font_size:20
  1080.                         bold:True
  1081.                         adaptive_height:True
  1082.  
  1083.                     MDFillRoundFlatButton:
  1084.                         text:'Book a tour Now'
  1085.                         md_bg_color: app.theme_cls.primary_color
  1086.                         size_hint:.8,.3
  1087.                         pos_hint:{'center_x':.5}
  1088.                         on_release: root.show_simple_dialog()
  1089.                 MDCard:
  1090.                     orientation:'vertical'
  1091.                     elevation:20
  1092.                     height:'650dp'
  1093.                     size_hint:1,None
  1094.                     #border_radius:25
  1095.                     radius:36, 36
  1096.                     elevation:25
  1097.                     padding:5
  1098.                     ripple_behavior:False
  1099.                     #md_bg_color:1,1,0,.5
  1100.                     #on_press: screen_man.current='doors'
  1101.                     FitImage:
  1102.                         source:'parks/river mayanja.jpg'
  1103.                         radius: 36, 36
  1104.                         size_hint:1,3
  1105.                     MDLabel:
  1106.                         text:'River Mayanja'
  1107.                         font_size:25
  1108.                         font_style:'H6'
  1109.                         font_name:'fonts/popins.ttf'
  1110.                         color:app.theme_cls.primary_color
  1111.                         halign:'center'
  1112.                         adaptive_height:True
  1113.  
  1114.                     MDLabel:
  1115.                         text:
  1116.                             "The Mayanja River is located in Central Uganda. It starts from the hills, northeast of the town of Wakiso, in Wakiso District, Central Uganda and flows in a northwestern direction to empty into River Kafu, Nakaseke District at its border with Masindi District and Kyankwanzi District. "\
  1117.  
  1118.                             "The source of River Mayanja is located in Wakiso, with coordinates: Latitude:0.41000, 32.52000. River Mayanja enters River Kafu near the village of Ndede, in Nakaseke District, with coordinates: Latitude:1.357"
  1119.                         font_size:20   
  1120.                         bold:True
  1121.                         adaptive_height:True
  1122.  
  1123.                     MDFillRoundFlatButton:
  1124.                         text:'Book a tour Now'
  1125.                         md_bg_color: app.theme_cls.primary_color
  1126.                         size_hint:.8,.3
  1127.                         pos_hint:{'center_x':.5}
  1128.                         on_release:root.show_simple_dialog()
  1129.  
  1130.  
  1131.                 MDCard:
  1132.                     orientation:'vertical'
  1133.                     elevation:20
  1134.                     height:'520dp'
  1135.                     size_hint:1,None
  1136.                     #border_radius:25
  1137.                     radius:36, 36
  1138.                     elevation:25
  1139.                     adaptive_height:True
  1140.                     padding:5
  1141.                     ripple_behavior:False
  1142.                     #md_bg_color:1,1,0,.5
  1143.                     #on_press: screen_man.current='doors'
  1144.                     FitImage:
  1145.                         source:'parks/river ora.jpg'
  1146.                         radius: 36, 36
  1147.                         size_hint:1,3
  1148.                     MDLabel:
  1149.                         text:'River Ora'
  1150.                         font_size:25
  1151.                         font_style:'H6'
  1152.                         adaptive_height:True
  1153.                         font_name:'fonts/popins.ttf'
  1154.                         color:app.theme_cls.primary_color
  1155.                         halign:'center'
  1156.  
  1157.                     MDLabel:
  1158.                         text:
  1159.                             "Ora River is next to Rabiya and is located in Arua District, Northern Region, Uganda. Ora River has a length of 25.1 kilometres."
  1160.                         font_size:20
  1161.                         bold:True
  1162.                         adaptive_height:True
  1163.  
  1164.                     MDFillRoundFlatButton:
  1165.                         text:'Book a tour Now'
  1166.                         md_bg_color: app.theme_cls.primary_color
  1167.                         size_hint:.8,.3
  1168.                         pos_hint:{'center_x':.5}
  1169.                         on_release:root.show_simple_dialog()
  1170.  
  1171.  
  1172.  
  1173.                 MDCard:
  1174.                     orientation:'vertical'
  1175.                     elevation:20
  1176.                     height:'650dp'
  1177.                     size_hint:1,None
  1178.                     #border_radius:25
  1179.                     radius:36, 36
  1180.                     elevation:25
  1181.                     ripple_behavior:False
  1182.                     #md_bg_color:1,1,0,.5
  1183.                     padding:5
  1184.                     #on_press: screen_man.current='doors'
  1185.                     FitImage:
  1186.                         source:'parks/river rwizi.jpg'
  1187.                         radius: 36, 36
  1188.                         size_hint:1,3
  1189.                     MDLabel:
  1190.                         text:'River Rwizi'
  1191.                         font_size:35
  1192.                         font_style:'H6'
  1193.                         adaptive_height:True
  1194.                         font_name:'fonts/popins.ttf'
  1195.                         color:app.theme_cls.primary_color
  1196.                         halign:'center'
  1197.  
  1198.                     MDLabel:
  1199.                         text:
  1200.                             "The River Rwizi is a beautiful river that navigates through the town of Mbarara in South Western Uganda, providing a source of water and livelihood to people across the region.11 Economic activities in the catchment area include mainly subsistence and commercial crop agriculture, livestock rearing, fish farming, brickmaking, sand mining, tourism and industries like Coca Cola production and beer breweries, among others"
  1201.                         font_size:20
  1202.                         bold:True
  1203.                         adaptive_height:True
  1204.  
  1205.                     MDFillRoundFlatButton:
  1206.                         text:'Book a tour Now'
  1207.                         md_bg_color: app.theme_cls.primary_color
  1208.                         size_hint:.8,.3
  1209.                         pos_hint:{'center_x':.5}
  1210.                         on_release:root.show_simple_dialog()
  1211.  
  1212.                 MDCard:
  1213.                     orientation:'vertical'
  1214.                     elevation:40
  1215.                     height:'650dp'
  1216.                     size_hint:1,None
  1217.                     padding:5
  1218.                     #border_radius:25
  1219.                     radius:36, 36
  1220.                     elevation:25
  1221.                     ripple_behavior:False
  1222.                     #md_bg_color:1,1,0,.5
  1223.                     #on_press: screen_man.current='doors'
  1224.                     FitImage:
  1225.                         source:'parks/river sezibwa.jpg'
  1226.                         radius: 36, 36
  1227.                         size_hint:1,3
  1228.  
  1229.                        
  1230.  
  1231.                     MDLabel:
  1232.                         text:'River Sezzibwa'
  1233.                         font_size:30
  1234.                         halign:'center'
  1235.                         outline:True
  1236.                         outline_color:1,1,0,1
  1237.                         outline_width:1
  1238.                         adaptive_height:True
  1239.                         font_style:'H6'
  1240.                         font_name:'fonts/popins.ttf'
  1241.                         color:app.theme_cls.primary_color
  1242.  
  1243.  
  1244.                     MDLabel:
  1245.                         text:
  1246.                             "The Sezibwa River is located in Central Uganda.  It starts from the wetlands between Lake Victoria and Lake Kyoga, west of the Victoria Nile and flows in a generally northerly direction to empty into Lake Kyoga. The source of River Sezibwa is located in Buikwe District, near the town of Ngogwe.  River Sezibwa enters Lake Kyoga in Kayunga District, near the town of Galilaya. The length of River Sezibwa is approximately 150 kilometers (93 mi) from source to end. Between its source in Buikwe District, but before it enters Kayunga District, the river flows through Mukono District"
  1247.                         font_size:20
  1248.                         bold:True
  1249.                         adaptive_height:True
  1250.  
  1251.                     MDFillRoundFlatButton:
  1252.                         text:'Book a tour Now'
  1253.                         md_bg_color: app.theme_cls.primary_color
  1254.                         size_hint:.8,.3
  1255.                         pos_hint:{'center_x':.5}
  1256.                         on_release: root.show_simple_dialog()
  1257.                            
  1258.                                
  1259.                 MDCard:
  1260.                     orientation:'vertical'
  1261.                     elevation:20
  1262.                     height:'650dp'
  1263.                     size_hint:1,None
  1264.                     #border_radius:25
  1265.                     radius:36, 36
  1266.                     padding:5
  1267.                     elevation:25
  1268.                     ripple_behavior:False
  1269.                     #md_bg_color:1,1,0,.5
  1270.                     #on_press: screen_man.current='doors'
  1271.                     FitImage:
  1272.                         source:'parks/lugogo river.jpg'
  1273.                         radius: 36, 36
  1274.                         size_hint:1,3
  1275.                     MDLabel:
  1276.                         text:'Lugogo River'
  1277.                         font_size:25
  1278.                         font_style:'H6'
  1279.                         font_name:'fonts/popins.ttf'
  1280.                         color:app.theme_cls.primary_color
  1281.                         halign:'center'
  1282.                         adaptive_height:True
  1283.  
  1284.                     MDLabel:
  1285.                         text:
  1286.                             "River Lugogo (River Lugogo) is a ditch (class H - Hydrographic) in Uganda (general), Uganda (Africa) with the region font code of Africa/Middle East. It is located at an elevation of 1,183 meters above sea level. "\
  1287.                             "River Lugogo is also known as Lugogo Channel, River Lugogo."
  1288.                         font_size:20   
  1289.                         bold:True
  1290.                         adaptive_height:True
  1291.  
  1292.                     MDFillRoundFlatButton:
  1293.                         text:'Book a tour Now'
  1294.                         md_bg_color: app.theme_cls.primary_color
  1295.                         size_hint:.8,.3
  1296.                         pos_hint:{'center_x':.5}
  1297.                         on_release: root.show_simple_dialog()
  1298.  
  1299.                 MDCard:
  1300.                     orientation:'vertical'
  1301.                     elevation:20
  1302.                     height:'650dp'
  1303.                     size_hint:1,None
  1304.                     #border_radius:25
  1305.                     radius:36, 36
  1306.                     elevation:25
  1307.                     padding:5
  1308.                     ripple_behavior:False
  1309.                     #md_bg_color:1,1,0,.5
  1310.                     #on_press: screen_man.current='doors'
  1311.                     FitImage:
  1312.                         source:'parks/achwa river.jpg'
  1313.                         radius: 36, 36
  1314.                         size_hint:1,3
  1315.                     MDLabel:
  1316.                         text:'River Achwa'
  1317.                         font_size:25
  1318.                         font_style:'H6'
  1319.                         adaptive_height:True
  1320.                         font_name:'fonts/popins.ttf'
  1321.                         color:app.theme_cls.primary_color
  1322.                         halign:'center'
  1323.  
  1324.                     MDLabel:
  1325.                         text:
  1326.                             "The Achwa River is a river of Uganda in eastern Africa. It flows through the northern central part of the country, draining much of Uganda's northern plateau and northeastern highlands, before crossing the border into South Sudan where it joins the White Nile. In South Sudan it is known as the Aswa River"
  1327.                         bold:True
  1328.                         font_size:20
  1329.                         adaptive_height:True
  1330.  
  1331.                     MDFillRoundFlatButton:
  1332.                         text:'Book a tour Now'
  1333.                         md_bg_color: app.theme_cls.primary_color
  1334.                         size_hint:.8,.3
  1335.                         pos_hint:{'center_x':.5}
  1336.                         on_release: root.show_simple_dialog()
  1337.  
  1338. <Mount>:
  1339.     name:'Mountains'
  1340.     canvas.before:
  1341.         Color:
  1342.             rgba:1,1,1,1
  1343.         Rectangle:
  1344.             size:self.size 
  1345.  
  1346.     MDBoxLayout:
  1347.         orientation:'vertical'
  1348.         padding:'5dp'    
  1349.  
  1350.  
  1351.         ScrollView:
  1352.             bar_width:4
  1353.             bar_color:app.theme_cls.primary_color
  1354.             MDBoxLayout:
  1355.                 orientation:'vertical'
  1356.                 padding:'24dp','24dp','24dp','24dp'
  1357.                 size_hint_y: None
  1358.                 width:self.minimum_width
  1359.                 height:self.minimum_height
  1360.                 spacing:10
  1361.                 md_bg_color:app.theme_cls.primary_color
  1362.                 MDIconButton:
  1363.                     icon:'arrow-left'
  1364.                     on_press:root.manager.current='home'
  1365.                 MDLabel:
  1366.                     text: "Mountains In Uganda;"
  1367.                     adaptive_height:True
  1368.                     bold:True
  1369.                     font_style:'H6'
  1370.                     font_size:30
  1371.                      
  1372.  
  1373.                 Widget:
  1374.  
  1375.                 MDCard:
  1376.                     orientation:'vertical'
  1377.                     elevation:40
  1378.                     height:'750dp'
  1379.                     size_hint:1,None
  1380.                     padding:5
  1381.                     spacing:5
  1382.                     radius:36, 36
  1383.                     elevation:25
  1384.  
  1385.                     ripple_behavior:False
  1386.                     #on_press: screen_man.current='doors'
  1387.                     FitImage:
  1388.                         source:'parks/Mount-Gahinga.jpg'
  1389.                         radius: 36, 36
  1390.                         size_hint:1,3
  1391.  
  1392.                        
  1393.  
  1394.                     MDLabel:
  1395.                         text:'Mountain Gahinga'
  1396.                         font_size:50
  1397.                         halign:'center'
  1398.                         outline:True
  1399.                         outline_color:1,1,0,1
  1400.                         outline_width:1
  1401.                         adaptive_height:True
  1402.                         font_style:'H6'
  1403.                         font_name:'fonts/popins.ttf'
  1404.                         color:app.theme_cls.primary_color
  1405.  
  1406.  
  1407.                     MDLabel:
  1408.                         text:
  1409.                             "Mount Gahinga is a dormant/extinct volcano in the Virunga Mountains on the border between Rwanda and Uganda. Gahinga lies between Muhabura and Sabyinyo"
  1410.                         font_size:20
  1411.                         bold:True
  1412.                         adaptive_height:True
  1413.  
  1414.                     MDFillRoundFlatButton:
  1415.                         text:'Book a tour Now'
  1416.                         md_bg_color: app.theme_cls.primary_color
  1417.                         size_hint:.8,.3
  1418.                         pos_hint:{'center_x':.5}
  1419.                         on_release: root.show_simple_dialog()
  1420.                            
  1421.                                
  1422.                 MDCard:
  1423.                     orientation:'vertical'
  1424.                     elevation:20
  1425.                     height:'650dp'
  1426.                     size_hint:1,None
  1427.                     adaptive_height:True
  1428.                     radius:36, 36
  1429.                     elevation:25
  1430.                     padding:5
  1431.                     ripple_behavior:False
  1432.                     #md_bg_color:1,1,0,.5
  1433.                     #on_press: screen_man.current='doors'
  1434.                     FitImage:
  1435.                         source:'parks/Mt-Rwenzori.jpg'
  1436.                         radius: 36, 36
  1437.                         size_hint:1,3
  1438.                     MDLabel:
  1439.                         text:'Mountain Rwenzori'
  1440.                         font_size:25
  1441.                         font_style:'H6'
  1442.                         adaptive_height:True
  1443.                         font_name:'fonts/popins.ttf'
  1444.                         color:app.theme_cls.primary_color
  1445.                         halign:'center'
  1446.  
  1447.                     MDLabel:
  1448.                         text:
  1449.                             "Mountain Rwenzori National Park is located within the “Mountains of the Moon”, as Mount Rwenzori is called. Mountain Rwenzori is situated in Western Uganda in the East African Rift Valley and straddles also to the Democratic Republic of Congo and its conservation area known as Virunga National Park. The mountain is the third highest in Africa"
  1450.                         font_size:20
  1451.                         bold:True
  1452.                         adaptive_height:True
  1453.  
  1454.                     MDFillRoundFlatButton:
  1455.                         text:'Book a tour Now'
  1456.                         md_bg_color: app.theme_cls.primary_color
  1457.                         size_hint:.8,.3
  1458.                         pos_hint:{'center_x':.5}
  1459.                         on_release:root.show_simple_dialog()
  1460.  
  1461.                 MDCard:
  1462.                     orientation:'vertical'
  1463.                     elevation:20
  1464.                     height:'520dp'
  1465.                     size_hint:1,None
  1466.                     #border_radius:25
  1467.                     radius:36, 36
  1468.                     elevation:25
  1469.                     padding:5
  1470.                     ripple_behavior:False
  1471.                     #md_bg_color:1,1,0,.5
  1472.                     #on_press: screen_man.current='doors'
  1473.                     FitImage:
  1474.                         source:'parks/mountain_muhabura.jpg'
  1475.                         radius: 36, 36
  1476.                         size_hint:1,3
  1477.                     MDLabel:
  1478.                         text:'Mountain Muhabura'
  1479.                         font_size:25
  1480.                         font_style:'H6'
  1481.                         font_name:'fonts/popins.ttf'
  1482.                         color:app.theme_cls.primary_color
  1483.                         halign:'center'
  1484.                         adaptive_height:True
  1485.  
  1486.                     MDLabel:
  1487.                         text:
  1488.                             "Mount Muhabura, also known as Mount Muhavura, is an inactive volcano in the Virunga Mountains on the border between Rwanda and Uganda. At 4,127 metres Muhabura is the third highest of the eight major mountains of the mountain range, which is a part of the Albertine Rift, the western branch of the East African Rif"
  1489.                         font_size:20   
  1490.                         bold:True
  1491.                         adaptive_height:True
  1492.  
  1493.                     MDFillRoundFlatButton:
  1494.                         text:'Book a tour Now'
  1495.                         md_bg_color: app.theme_cls.primary_color
  1496.                         size_hint:.8,.3
  1497.                         pos_hint:{'center_x':.5}
  1498.                         on_release:root.show_simple_dialog()
  1499.  
  1500.  
  1501.                 MDCard:
  1502.                     orientation:'vertical'
  1503.                     elevation:20
  1504.                     height:'520dp'
  1505.                     size_hint:1,None
  1506.                     #border_radius:25
  1507.                     radius:36, 36
  1508.                     elevation:25
  1509.                     adaptive_height:True
  1510.                     padding:5
  1511.                     ripple_behavior:False
  1512.                     #md_bg_color:1,1,0,.5
  1513.                     #on_press: screen_man.current='doors'
  1514.                     FitImage:
  1515.                         source:'parks/Mount-Elgon-NP-banner.jpg'
  1516.                         radius: 36, 36
  1517.                         size_hint:1,3
  1518.                     MDLabel:
  1519.                         text:'Mountain Elgon'
  1520.                         font_size:25
  1521.                         font_style:'H6'
  1522.                         adaptive_height:True
  1523.                         font_name:'fonts/popins.ttf'
  1524.                         color:app.theme_cls.primary_color
  1525.                         halign:'center'
  1526.  
  1527.                     MDLabel:
  1528.                         text:
  1529.                             "Mount Elgon is an extinct shield volcano on the border of Uganda and Kenya, north of Kisumu and west of Kitale. The mountain's highest point, named 'Wagagai', is located entirely within Uganda"
  1530.                         font_size:20
  1531.                         bold:True
  1532.                         adaptive_height:True
  1533.  
  1534.                     MDFillRoundFlatButton:
  1535.                         text:'Book a tour Now'
  1536.                         md_bg_color: app.theme_cls.primary_color
  1537.                         size_hint:.8,.3
  1538.                         pos_hint:{'center_x':.5}
  1539.                         on_release:root.show_simple_dialog()
  1540.  
  1541.  
  1542.                 MDCard:
  1543.                     orientation:'vertical'
  1544.                     elevation:20
  1545.                     height:'520dp'
  1546.                     size_hint:1,None
  1547.                     #border_radius:25
  1548.                     radius:36, 36
  1549.                     elevation:25
  1550.                     adaptive_height:True
  1551.                     padding:5
  1552.                     ripple_behavior:False
  1553.                     #md_bg_color:1,1,0,.5
  1554.                     #on_press: screen_man.current='doors'
  1555.                     FitImage:
  1556.                         source:'parks/tororo-rock.jpg'
  1557.                         radius: 36, 36
  1558.                         size_hint:1,3
  1559.                     MDLabel:
  1560.                         text:'Tororo Rock'
  1561.                         font_size:25
  1562.                         font_style:'H6'
  1563.                         adaptive_height:True
  1564.                         font_name:'fonts/popins.ttf'
  1565.                         color:app.theme_cls.primary_color
  1566.                         halign:'center'
  1567.  
  1568.                     MDLabel:
  1569.                         text:
  1570.                             "Tororo Rock is a rock formation located in the town of Tororo in the Eastern Region of Uganda. It serves as the defining feature of the town. It is also a tourist attraction being climbable in around an hour. The climb involves four ladders up the last sections but the walk does not require any skill"
  1571.                         font_size:20
  1572.                         bold:True
  1573.                         adaptive_height:True
  1574.  
  1575.                     MDFillRoundFlatButton:
  1576.                         text:'Book a tour Now'
  1577.                         md_bg_color: app.theme_cls.primary_color
  1578.                         size_hint:.8,.3
  1579.                         pos_hint:{'center_x':.5}
  1580.                         on_release:root.show_simple_dialog()
  1581.  
  1582. <Dams>:
  1583.     name:'dams'
  1584.     canvas.before:
  1585.         Color:
  1586.             rgba:1,1,1,1
  1587.         Rectangle:
  1588.             size:self.size  
  1589.  
  1590.     MDBoxLayout:
  1591.         orientation:'vertical'
  1592.         padding:'5dp'    
  1593.  
  1594.  
  1595.         ScrollView:
  1596.             bar_width:4
  1597.             bar_color:app.theme_cls.primary_color
  1598.             MDBoxLayout:
  1599.                 orientation:'vertical'
  1600.                 padding:'24dp','24dp','24dp','24dp'
  1601.                 size_hint_y: None
  1602.                 width:self.minimum_width
  1603.                 height:self.minimum_height
  1604.                 spacing:10
  1605.                 md_bg_color:app.theme_cls.primary_color
  1606.                 MDIconButton:
  1607.                     icon:'arrow-left'
  1608.                     on_press:root.manager.current='home'
  1609.                 MDLabel:
  1610.                     text: "Dams In Uganda;"
  1611.                     adaptive_height:True
  1612.                     bold:True
  1613.                     font_style:'H6'
  1614.                     font_size:30
  1615.                      
  1616.  
  1617.                 Widget:
  1618.  
  1619.                 MDCard:
  1620.                     orientation:'vertical'
  1621.                     elevation:40
  1622.                     height:'750dp'
  1623.                     size_hint:1,None
  1624.                     padding:5
  1625.                     spacing:5
  1626.                     radius:36, 36
  1627.                     elevation:25
  1628.  
  1629.                     ripple_behavior:False
  1630.                     #on_press: screen_man.current='doors'
  1631.                     FitImage:
  1632.                         source:'parks/owen falls dam.jpg'
  1633.                         radius: 36, 36
  1634.                         size_hint:1,3
  1635.  
  1636.                        
  1637.  
  1638.                     MDLabel:
  1639.                         text:'Owen Falls Dam'
  1640.                         font_size:50
  1641.                         halign:'center'
  1642.                         outline:True
  1643.                         outline_color:1,1,0,1
  1644.                         outline_width:1
  1645.                         adaptive_height:True
  1646.                         font_style:'H6'
  1647.                         font_name:'fonts/popins.ttf'
  1648.                         color:app.theme_cls.primary_color
  1649.  
  1650.  
  1651.                     MDLabel:
  1652.                         text:
  1653.                             "Nalubaale Power Station, formerly known as Owen Falls Dam, is a hydroelectric power station across the White Nile near its source at Lake Victoria in Uganda. Nalubaale is the Luganda name for Lake Victoria"
  1654.                         font_size:20
  1655.                         bold:True
  1656.                         adaptive_height:True
  1657.  
  1658.                     MDFillRoundFlatButton:
  1659.                         text:'Book a tour Now'
  1660.                         md_bg_color: app.theme_cls.primary_color
  1661.                         size_hint:.8,.3
  1662.                         pos_hint:{'center_x':.5}
  1663.                         on_release: root.show_simple_dialog()
  1664.                            
  1665.                                
  1666.                 MDCard:
  1667.                     orientation:'vertical'
  1668.                     elevation:20
  1669.                     height:'650dp'
  1670.                     size_hint:1,None
  1671.                     adaptive_height:True
  1672.                     radius:36, 36
  1673.                     elevation:25
  1674.                     padding:5
  1675.                     ripple_behavior:False
  1676.                     #md_bg_color:1,1,0,.5
  1677.                     #on_press: screen_man.current='doors'
  1678.                     FitImage:
  1679.                         source:'parks/Karuma dam.jpg'
  1680.                         radius: 36, 36
  1681.                         size_hint:1,3
  1682.                     MDLabel:
  1683.                         text:'Karuma Dam'
  1684.                         font_size:25
  1685.                         font_style:'H6'
  1686.                         adaptive_height:True
  1687.                         font_name:'fonts/popins.ttf'
  1688.                         color:app.theme_cls.primary_color
  1689.                         halign:'center'
  1690.  
  1691.                     MDLabel:
  1692.                         text:
  1693.                             "Nalubaale Power Station, formerly known as Owen Falls Dam, is a hydroelectric power station across the White Nile near its source at Lake Victoria in Uganda. Nalubaale is the Luganda name for Lake Victoria"
  1694.                         font_size:20
  1695.                         bold:True
  1696.                         adaptive_height:True
  1697.  
  1698.                     MDFillRoundFlatButton:
  1699.                         text:'Book a tour Now'
  1700.                         md_bg_color: app.theme_cls.primary_color
  1701.                         size_hint:.8,.3
  1702.                         pos_hint:{'center_x':.5}
  1703.                         on_release: root.show_simple_dialog()
  1704.  
  1705.  
  1706. <Lakes>:
  1707.     name:'lakes'
  1708.     canvas.before:
  1709.         Color:
  1710.             rgba:1,1,1,1
  1711.         Rectangle:
  1712.             size:self.size 
  1713.  
  1714.     MDBoxLayout:
  1715.         orientation:'vertical'
  1716.         padding:'5dp'    
  1717.  
  1718.  
  1719.         ScrollView:
  1720.             bar_width:4
  1721.             bar_color:app.theme_cls.primary_color
  1722.             MDBoxLayout:
  1723.                 orientation:'vertical'
  1724.                 padding:'24dp','24dp','24dp','24dp'
  1725.                 size_hint_y: None
  1726.                 width:self.minimum_width
  1727.                 height:self.minimum_height
  1728.                 spacing:10
  1729.                 md_bg_color:app.theme_cls.primary_color
  1730.                 MDIconButton:
  1731.                     icon:'arrow-left'
  1732.                     on_press:root.manager.current='home'
  1733.                 MDLabel:
  1734.                     text: "Lakes In Uganda;"
  1735.                     adaptive_height:True
  1736.                     bold:True
  1737.                     font_style:'H6'
  1738.                     font_size:30
  1739.                      
  1740.  
  1741.                 Widget:
  1742.  
  1743.                 MDCard:
  1744.                     orientation:'vertical'
  1745.                     elevation:40
  1746.                     height:'750dp'
  1747.                     size_hint:1,None
  1748.                     padding:5
  1749.                     spacing:5
  1750.                     radius:36, 36
  1751.                     elevation:25
  1752.  
  1753.                     ripple_behavior:False
  1754.                     #on_press: screen_man.current='doors'
  1755.                     FitImage:
  1756.                         source:'parks/lake victoria.jpg'
  1757.                         radius: 36, 36
  1758.                         size_hint:1,3
  1759.  
  1760.                        
  1761.  
  1762.                     MDLabel:
  1763.                         text:'Lake Victoria'
  1764.                         font_size:50
  1765.                         halign:'center'
  1766.                         outline:True
  1767.                         outline_color:1,1,0,1
  1768.                         outline_width:1
  1769.                         adaptive_height:True
  1770.                         font_style:'H6'
  1771.                         font_name:'fonts/popins.ttf'
  1772.                         color:app.theme_cls.primary_color
  1773.  
  1774.  
  1775.                     MDLabel:
  1776.                         text:
  1777.                             "Lake Victoria is the world's largest tropical lake and the largest lake in the African Great Lakes region. The lake supports the largest freshwater fishery in the world, producing 1 million tons of fish per year and employing 200,000 people in supporting the livelihoods of 4 million people. The major threats to the lake are deforestation, land use change, wetland degradation and discharge from urban areas, industries and farmlands."
  1778.                         font_size:20
  1779.                         bold:True
  1780.                         adaptive_height:True
  1781.  
  1782.                     MDFillRoundFlatButton:
  1783.                         text:'Book a tour Now'
  1784.                         md_bg_color: app.theme_cls.primary_color
  1785.                         size_hint:.8,.3
  1786.                         pos_hint:{'center_x':.5}
  1787.                         on_release: root.show_simple_dialog()
  1788.                            
  1789.                                
  1790.                 MDCard:
  1791.                     orientation:'vertical'
  1792.                     elevation:20
  1793.                     height:'650dp'
  1794.                     size_hint:1,None
  1795.                     adaptive_height:True
  1796.                     radius:36, 36
  1797.                     elevation:25
  1798.                     padding:5
  1799.                     ripple_behavior:False
  1800.                     #md_bg_color:1,1,0,.5
  1801.                     #on_press: screen_man.current='doors'
  1802.                     FitImage:
  1803.                         source:'parks/kyoga lake.jpg'
  1804.                         radius: 36, 36
  1805.                         size_hint:1,3
  1806.                     MDLabel:
  1807.                         text:'Lake Kyoga'
  1808.                         font_size:25
  1809.                         font_style:'H6'
  1810.                         adaptive_height:True
  1811.                         font_name:'fonts/popins.ttf'
  1812.                         color:app.theme_cls.primary_color
  1813.                         halign:'center'
  1814.  
  1815.                     MDLabel:
  1816.                         text:
  1817.                             "Lake Kyoga (literally 'the place of bathing' in Runyoro language) is a large shallow lake in Uganda, about 1,720 km2 (660 sq mi)[1] in area and at an elevation of 1,033 metres.[2] The Victoria Nile flows through the lake on its way from Lake Victoria to Lake Albert. The main inflow from Lake Victoria is regulated by the Nalubaale Power Station in Jinja. Another source of water is the Mount Elgon region on the border between Uganda and Kenya. While Lake Kyoga is part of the African Great Lakes system, it is not itself considered a great lake"
  1818.                         font_size:20
  1819.                         bold:True
  1820.                         adaptive_height:True
  1821.  
  1822.                     MDFillRoundFlatButton:
  1823.                         text:'Book a tour Now'
  1824.                         md_bg_color: app.theme_cls.primary_color
  1825.                         size_hint:.8,.3
  1826.                         pos_hint:{'center_x':.5}
  1827.                         on_release:root.show_simple_dialog()
  1828.  
  1829.                 MDCard:
  1830.                     orientation:'vertical'
  1831.                     elevation:20
  1832.                     height:'520dp'
  1833.                     size_hint:1,None
  1834.                     #border_radius:25
  1835.                     radius:36, 36
  1836.                     elevation:25
  1837.                     padding:5
  1838.                     ripple_behavior:False
  1839.                     #md_bg_color:1,1,0,.5
  1840.                     #on_press: screen_man.current='doors'
  1841.                     FitImage:
  1842.                         source:'parks/Lake-Edward.jpg'
  1843.                         radius: 36, 36
  1844.                         size_hint:1,3
  1845.                     MDLabel:
  1846.                         text:'Lake Edward'
  1847.                         font_size:25
  1848.                         font_style:'H6'
  1849.                         font_name:'fonts/popins.ttf'
  1850.                         color:app.theme_cls.primary_color
  1851.                         halign:'center'
  1852.                         adaptive_height:True
  1853.  
  1854.                     MDLabel:
  1855.                         text:
  1856.                             "Lake Edward (locally Rwitanzigye or Rweru) is one of the smaller African Great Lakes. It is located in the Albertine Rift, the western branch of the East African Rift, on the border between the Democratic Republic of the Congo (DRC) and Uganda, with its northern shore a few kilometres south of the equator."
  1857.                         font_size:20   
  1858.                         bold:True
  1859.                         adaptive_height:True
  1860.  
  1861.                     MDFillRoundFlatButton:
  1862.                         text:'Book a tour Now'
  1863.                         md_bg_color: app.theme_cls.primary_color
  1864.                         size_hint:.8,.3
  1865.                         pos_hint:{'center_x':.5}
  1866.                         on_release:root.show_simple_dialog()
  1867.  
  1868.  
  1869.                 MDCard:
  1870.                     orientation:'vertical'
  1871.                     elevation:20
  1872.                     height:'650dp'
  1873.                     size_hint:1,None
  1874.                     #border_radius:25
  1875.                     radius:36, 36
  1876.                     elevation:25
  1877.                     adaptive_height:True
  1878.                     padding:5
  1879.                     ripple_behavior:False
  1880.                     #md_bg_color:1,1,0,.5
  1881.                     #on_press: screen_man.current='doors'
  1882.                     FitImage:
  1883.                         source:'parks/Lake-Katwe.jpg'
  1884.                         radius: 36, 36
  1885.                         size_hint:1,3
  1886.                     MDLabel:
  1887.                         text:'Lake Katwe'
  1888.                         font_size:25
  1889.                         font_style:'H6'
  1890.                         adaptive_height:True
  1891.                         font_name:'fonts/popins.ttf'
  1892.                         color:app.theme_cls.primary_color
  1893.                         halign:'center'
  1894.  
  1895.                     MDLabel:
  1896.                         text:
  1897.                             "Lake Katwe is known throughout Uganda and the East African region for its substantial salt production and has been producing high quality salt for many years. Geographically, Lake Katwe is found within an explosion crater in the formerly active volcanic area north-east of Lake Edward and south-east of Lake George. The lake is found in the small run-down town of Katwe on the outskirts of the Queen Elizabeth National Park in the Kasese district"
  1898.                         font_size:20
  1899.                         bold:True
  1900.                         adaptive_height:True
  1901.  
  1902.                     MDFillRoundFlatButton:
  1903.                         text:'Book a tour Now'
  1904.                         md_bg_color: app.theme_cls.primary_color
  1905.                         size_hint:.8,.3
  1906.                         pos_hint:{'center_x':.5}
  1907.                         on_release:root.show_simple_dialog()
  1908.  
  1909.  
  1910.  
  1911.                 MDCard:
  1912.                     orientation:'vertical'
  1913.                     elevation:20
  1914.                     height:'650dp'
  1915.                     size_hint:1,None
  1916.                     #border_radius:25
  1917.                     radius:36, 36
  1918.                     elevation:25
  1919.                     ripple_behavior:False
  1920.                     #md_bg_color:1,1,0,.5
  1921.                     padding:5
  1922.                     #on_press: screen_man.current='doors'
  1923.                     FitImage:
  1924.                         source:'parks/Lake-George.jpg'
  1925.                         radius: 36, 36
  1926.                         size_hint:1,3
  1927.                     MDLabel:
  1928.                         text:'Lake George'
  1929.                         font_size:35
  1930.                         font_style:'H6'
  1931.                         adaptive_height:True
  1932.                         font_name:'fonts/popins.ttf'
  1933.                         color:app.theme_cls.primary_color
  1934.                         halign:'center'
  1935.  
  1936.                     MDLabel:
  1937.                         text:
  1938.                             "Located in southwestern Uganda, Lake George is a shallow lake with an average depth of around 2.4 metres. The lake is in the western part of the Great Rift Valley and the explorer Henry M. Stanley named it after King George V."
  1939.                         font_size:20
  1940.                         bold:True
  1941.                         adaptive_height:True
  1942.  
  1943.                     MDFillRoundFlatButton:
  1944.                         text:'Book a tour Now'
  1945.                         md_bg_color: app.theme_cls.primary_color
  1946.                         size_hint:.8,.3
  1947.                         pos_hint:{'center_x':.5}
  1948.                         on_release:root.show_simple_dialog()
  1949.  
  1950.                 MDCard:
  1951.                     orientation:'vertical'
  1952.                     elevation:40
  1953.                     height:'650dp'
  1954.                     size_hint:1,None
  1955.                     padding:5
  1956.                     #border_radius:25
  1957.                     radius:36, 36
  1958.                     elevation:25
  1959.                     ripple_behavior:False
  1960.                     #md_bg_color:1,1,0,.5
  1961.                     #on_press: screen_man.current='doors'
  1962.                     FitImage:
  1963.                         source:'parks/lake-albert.jpg'
  1964.                         radius: 36, 36
  1965.                         size_hint:1,3
  1966.  
  1967.                        
  1968.  
  1969.                     MDLabel:
  1970.                         text:'Lake Albert'
  1971.                         font_size:30
  1972.                         halign:'center'
  1973.                         outline:True
  1974.                         outline_color:1,1,0,1
  1975.                         outline_width:1
  1976.                         adaptive_height:True
  1977.                         font_style:'H6'
  1978.                         font_name:'fonts/popins.ttf'
  1979.                         color:app.theme_cls.primary_color
  1980.  
  1981.  
  1982.                     MDLabel:
  1983.                         text:
  1984.                             "Lake Albert is shared between Uganda and the Democratic Republic of Congo (DRC). The lake's water is mainly controlled by the Nile River. Population density in some parts of the lake basin is as high as 149 people/km2. The population growth rate is also quite high."
  1985.                         font_size:20
  1986.                         bold:True
  1987.                         adaptive_height:True
  1988.  
  1989.                     MDFillRoundFlatButton:
  1990.                         text:'Book a tour Now'
  1991.                         md_bg_color: app.theme_cls.primary_color
  1992.                         size_hint:.8,.3
  1993.                         pos_hint:{'center_x':.5}
  1994.                         on_release: root.show_simple_dialog()
  1995.                            
  1996.                                
  1997.                 MDCard:
  1998.                     orientation:'vertical'
  1999.                     elevation:20
  2000.                     height:'650dp'
  2001.                     size_hint:1,None
  2002.                     #border_radius:25
  2003.                     radius:36, 36
  2004.                     padding:5
  2005.                     elevation:25
  2006.                     ripple_behavior:False
  2007.                     #md_bg_color:1,1,0,.5
  2008.                     #on_press: screen_man.current='doors'
  2009.                     FitImage:
  2010.                         source:'parks/Lake bunyonyi.jpg'
  2011.                         radius: 36, 36
  2012.                         size_hint:1,3
  2013.                     MDLabel:
  2014.                         text:'Lake Bunyonyi'
  2015.                         font_size:25
  2016.                         font_style:'H6'
  2017.                         font_name:'fonts/popins.ttf'
  2018.                         color:app.theme_cls.primary_color
  2019.                         halign:'center'
  2020.                         adaptive_height:True
  2021.  
  2022.                     MDLabel:
  2023.                         text:
  2024.                             "Lake Bunyonyi (‘place of many little birds’) is undoubtedly the loveliest lake in Uganda. Its contorted shore encircles 29 islands, surrounded by steep terraced hillsides reminiscent of parts of Nepal"
  2025.                         font_size:20
  2026.                         bold:True
  2027.                         adaptive_height:True
  2028.  
  2029.                     MDFillRoundFlatButton:
  2030.                         text:'Book a tour Now'
  2031.                         md_bg_color: app.theme_cls.primary_color
  2032.                         size_hint:.8,.3
  2033.                         pos_hint:{'center_x':.5}
  2034.                         on_release: root.show_simple_dialog()
  2035.  
  2036.                 MDCard:
  2037.                     orientation:'vertical'
  2038.                     elevation:20
  2039.                     height:'650dp'
  2040.                     size_hint:1,None
  2041.                     #border_radius:25
  2042.                     radius:36, 36
  2043.                     elevation:25
  2044.                     padding:5
  2045.                     ripple_behavior:False
  2046.                     #md_bg_color:1,1,0,.5
  2047.                     #on_press: screen_man.current='doors'
  2048.                     FitImage:
  2049.                         source:'parks/lake wamala.jpg'
  2050.                         radius: 36, 36
  2051.                         size_hint:1,3
  2052.                     MDLabel:
  2053.                         text:'Lake Wamala'
  2054.                         font_size:25
  2055.                         font_style:'H6'
  2056.                         adaptive_height:True
  2057.                         font_name:'fonts/popins.ttf'
  2058.                         color:app.theme_cls.primary_color
  2059.                         halign:'center'
  2060.  
  2061.                     MDLabel:
  2062.                         text:
  2063.                             "Lake Wamala is one of the freshwater bodies located in Central Uganda, covering a total area of 250 km². It is a relatively shallow with a depth ranging from 1.5 m to 4.5 m. It is surrounded by papyrus beds, reed (Phragmites), Raphia palms and wild date palms (Phoenix reclinata)."
  2064.                         font_size:20
  2065.                         bold:True
  2066.                         adaptive_height:True
  2067.  
  2068.                     MDFillRoundFlatButton:
  2069.                         text:'Book a tour Now'
  2070.                         md_bg_color: app.theme_cls.primary_color
  2071.                         size_hint:.8,.3
  2072.                         pos_hint:{'center_x':.5}
  2073.                         on_release: root.show_simple_dialog()
  2074.  
  2075.                                
  2076.                 MDCard:
  2077.                     orientation:'vertical'
  2078.                     elevation:20
  2079.                     height:'650dp'
  2080.                     size_hint:1,None
  2081.                     #border_radius:25
  2082.                     radius:36, 36
  2083.                     padding:5
  2084.                     elevation:25
  2085.                     ripple_behavior:False
  2086.                     #md_bg_color:1,1,0,.5
  2087.                     #on_press: screen_man.current='doors'
  2088.                     FitImage:
  2089.                         source:'parks/Mutanda lake.jpg'
  2090.                         radius: 36, 36
  2091.                         size_hint:1,3
  2092.                     MDLabel:
  2093.                         text:'Lake Mutanda'
  2094.                         font_size:25
  2095.                         font_style:'H6'
  2096.                         font_name:'fonts/popins.ttf'
  2097.                         color:app.theme_cls.primary_color
  2098.                         halign:'center'
  2099.                         adaptive_height:True
  2100.  
  2101.                     MDLabel:
  2102.                         text:
  2103.                             "Lake Mutanda is a small, freshwater lake in the far southwest of Uganda, close to Bwindi Impenetrable Forest and Mgahinga Gorilla National Park. It is drained by the Rutshuru River, flowing northward to Lake Edward."
  2104.                         font_size:20
  2105.                         bold:True
  2106.                         adaptive_height:True
  2107.  
  2108.                     MDFillRoundFlatButton:
  2109.                         text:'Book a tour Now'
  2110.                         md_bg_color: app.theme_cls.primary_color
  2111.                         size_hint:.8,.3
  2112.                         pos_hint:{'center_x':.5}
  2113.                         on_release: root.show_simple_dialog()
  2114.  
  2115.                 MDCard:
  2116.                     orientation:'vertical'
  2117.                     elevation:20
  2118.                     height:'650dp'
  2119.                     size_hint:1,None
  2120.                     #border_radius:25
  2121.                     radius:36, 36
  2122.                     elevation:25
  2123.                     padding:5
  2124.                     ripple_behavior:False
  2125.                     #md_bg_color:1,1,0,.5
  2126.                     #on_press: screen_man.current='doors'
  2127.                     FitImage:
  2128.                         source:'parks/Kabakas-Lake.jpg'
  2129.                         radius: 36, 36
  2130.                         size_hint:1,3
  2131.                     MDLabel:
  2132.                         text:"Kabaka's Lake/ Kayanja ka Kabaka"
  2133.                         font_size:25
  2134.                         font_style:'H6'
  2135.                         adaptive_height:True
  2136.                         font_name:'fonts/popins.ttf'
  2137.                         color:app.theme_cls.primary_color
  2138.                         halign:'center'
  2139.  
  2140.                     MDLabel:
  2141.                         text:
  2142.                             "The Kabaka’s lake is situated in Ndeeba in between Nabunya road and ring road. The lake is a few kilometers away from Kampala Uganda’s capital city. Historically this lake was constructed in 1880. Kabaka Mwanga II orded wanted it mainly act as an escape corridor during the British armed conflicts."
  2143.                         font_size:20
  2144.                         bold:True
  2145.                         adaptive_height:True
  2146.  
  2147.                     MDFillRoundFlatButton:
  2148.                         text:'Book a tour Now'
  2149.                         md_bg_color: app.theme_cls.primary_color
  2150.                         size_hint:.8,.3
  2151.                         pos_hint:{'center_x':.5}
  2152.                         on_release: root.show_simple_dialog()
  2153.  
  2154. <Others>:
  2155.     name:'others'
  2156.     canvas.before:
  2157.         Color:
  2158.             rgba:1,1,1,1
  2159.         Rectangle:
  2160.             size:self.size 
  2161.  
  2162.     MDBoxLayout:
  2163.         orientation:'vertical'
  2164.         padding:'5dp'    
  2165.  
  2166.  
  2167.         ScrollView:
  2168.             bar_width:4
  2169.             bar_color:app.theme_cls.primary_color
  2170.             MDBoxLayout:
  2171.                 orientation:'vertical'
  2172.                 padding:'24dp','24dp','24dp','24dp'
  2173.                 size_hint_y: None
  2174.                 width:self.minimum_width
  2175.                 height:self.minimum_height
  2176.                 spacing:10
  2177.                 md_bg_color:app.theme_cls.primary_color
  2178.                 MDIconButton:
  2179.                     icon:'arrow-left'
  2180.                     on_press:root.manager.current='home'
  2181.                 MDLabel:
  2182.                     text: "Other Places To Visit In Uganda;"
  2183.                     adaptive_height:True
  2184.                     bold:True
  2185.                     font_style:'H6'
  2186.                     font_size:30
  2187.                      
  2188.  
  2189.                 Widget:
  2190.                 MDCard:
  2191.                     orientation:'vertical'
  2192.                     elevation:40
  2193.                     height:'750dp'
  2194.                     size_hint:1,None
  2195.                     padding:5
  2196.                     spacing:5
  2197.                     radius:36, 36
  2198.                     elevation:25
  2199.  
  2200.                     ripple_behavior:False
  2201.                     #on_press: screen_man.current='doors'
  2202.                     FitImage:
  2203.                         source:'parks/Entebbe airport.jpg'
  2204.                         radius: 36, 36
  2205.                         size_hint:1,3
  2206.  
  2207.                        
  2208.  
  2209.                     MDLabel:
  2210.                         text:'Entebbe Airport'
  2211.                         font_size:50
  2212.                         halign:'center'
  2213.                         outline:True
  2214.                         outline_color:1,1,0,1
  2215.                         outline_width:1
  2216.                         adaptive_height:True
  2217.                         font_style:'H6'
  2218.                         font_name:'fonts/popins.ttf'
  2219.                         color:app.theme_cls.primary_color
  2220.  
  2221.  
  2222.                     MDLabel:
  2223.                         text:
  2224.                             "Entebbe International Airport is the only international airport in Uganda. It is located about 6 kilometres southwest of the town of Entebbe, on the northern shores of Lake Victoria. This is approximately 40 kilometres by road south-west of the central business district of Kampala, the capital city of Uganda"
  2225.                         font_size:20
  2226.                         bold:True
  2227.                         adaptive_height:True
  2228.  
  2229.                     MDFillRoundFlatButton:
  2230.                         text:'Book a tour Now'
  2231.                         md_bg_color: app.theme_cls.primary_color
  2232.                         size_hint:.8,.3
  2233.                         pos_hint:{'center_x':.5}
  2234.                         on_release: root.show_simple_dialog()
  2235.  
  2236.                 MDCard:
  2237.                     orientation:'vertical'
  2238.                     elevation:40
  2239.                     height:'750dp'
  2240.                     size_hint:1,None
  2241.                     padding:5
  2242.                     spacing:5
  2243.                     radius:36, 36
  2244.                     elevation:25
  2245.  
  2246.                     ripple_behavior:False
  2247.                     #on_press: screen_man.current='doors'
  2248.                     FitImage:
  2249.                         source:'parks/entebe zo.jpg'
  2250.                         radius: 36, 36
  2251.                         size_hint:1,3
  2252.  
  2253.                        
  2254.  
  2255.                     MDLabel:
  2256.                         text:'Entebbe Zoo '
  2257.                         font_size:50
  2258.                         halign:'center'
  2259.                         outline:True
  2260.                         outline_color:1,1,0,1
  2261.                         outline_width:1
  2262.                         adaptive_height:True
  2263.                         font_style:'H6'
  2264.                         font_name:'fonts/popins.ttf'
  2265.                         color:app.theme_cls.primary_color
  2266.  
  2267.  
  2268.                     MDLabel:
  2269.                         text:
  2270.                             "The Uganda Wildlife Conservation Education Centre (Entebbe Zoo) is located 15 minutes from Entebbe International Airport, 36 kilometers from Uganda's capital Kampala. The centre cares for rescued animals, often victims of bush meat trade, habitat destruction, or illegal trade. "
  2271.                         font_size:20
  2272.                         bold:True
  2273.                         adaptive_height:True
  2274.  
  2275.                     MDFillRoundFlatButton:
  2276.                         text:'Book a tour Now'
  2277.                         md_bg_color: app.theme_cls.primary_color
  2278.                         size_hint:.8,.3
  2279.                         pos_hint:{'center_x':.5}
  2280.                         on_release: root.show_simple_dialog()
  2281.  
  2282.  
  2283.                 MDCard:
  2284.                     orientation:'vertical'
  2285.                     elevation:40
  2286.                     height:'750dp'
  2287.                     size_hint:1,None
  2288.                     padding:5
  2289.                     spacing:5
  2290.                     radius:36, 36
  2291.                     elevation:25
  2292.  
  2293.                     ripple_behavior:False
  2294.                     #on_press: screen_man.current='doors'
  2295.                     FitImage:
  2296.                         source:'parks/beaches.jpg'
  2297.                         radius: 36, 36
  2298.                         size_hint:1,3
  2299.  
  2300.                        
  2301.  
  2302.                     MDLabel:
  2303.                         text:'Beaches'
  2304.                         font_size:50
  2305.                         halign:'center'
  2306.                         outline:True
  2307.                         outline_color:1,1,0,1
  2308.                         outline_width:1
  2309.                         adaptive_height:True
  2310.                         font_style:'H6'
  2311.                         font_name:'fonts/popins.ttf'
  2312.                         color:app.theme_cls.primary_color
  2313.  
  2314.  
  2315.                     MDLabel:
  2316.                         text:
  2317.                             "Imperial Beach:"\
  2318.                             "Enabling some matchless water sports and golden sunset views Imperial Resort Beach and Imperial Botanical Beach are two iconic beaches located just beside to Imperial Beach Resort Hotel."
  2319.  
  2320.                         font_size:20
  2321.                         bold:True
  2322.                         adaptive_height:True
  2323.  
  2324.                     MDFillRoundFlatButton:
  2325.                         text:'Book a tour Now'
  2326.                         md_bg_color: app.theme_cls.primary_color
  2327.                         size_hint:.8,.3
  2328.                         pos_hint:{'center_x':.5}
  2329.                         on_release: root.show_simple_dialog()
  2330.                            
  2331.                                
  2332.                 MDCard:
  2333.                     orientation:'vertical'
  2334.                     elevation:20
  2335.                     height:'650dp'
  2336.                     size_hint:1,None
  2337.                     adaptive_height:True
  2338.                     radius:36, 36
  2339.                     elevation:25
  2340.                     padding:5
  2341.                     ripple_behavior:False
  2342.                     #md_bg_color:1,1,0,.5
  2343.                     #on_press: screen_man.current='doors'
  2344.                     FitImage:
  2345.                         source:'parks/kampalaserenahotel1.jpg'
  2346.                         radius: 36, 36
  2347.                         size_hint:1,3
  2348.                     MDLabel:
  2349.                         text:'Kampala Serena Hotel'
  2350.                         font_size:25
  2351.                         font_style:'H6'
  2352.                         adaptive_height:True
  2353.                         font_name:'fonts/popins.ttf'
  2354.                         color:app.theme_cls.primary_color
  2355.                         halign:'center'
  2356.  
  2357.                     MDLabel:
  2358.                         text:
  2359.                             "This high-end hotel is 3 km from the Uganda Museum, 4 km from Kabaka's Palace and 6 km from Kasubi Tombs"
  2360.                         font_size:20
  2361.                         bold:True
  2362.                         adaptive_height:True
  2363.  
  2364.                     MDFillRoundFlatButton:
  2365.                         text:'Book a tour Now'
  2366.                         md_bg_color: app.theme_cls.primary_color
  2367.                         size_hint:.8,.3
  2368.                         pos_hint:{'center_x':.5}
  2369.                         on_release:root.show_simple_dialog()
  2370.  
  2371.                 MDCard:
  2372.                     orientation:'vertical'
  2373.                     elevation:20
  2374.                     height:'520dp'
  2375.                     size_hint:1,None
  2376.                     #border_radius:25
  2377.                     radius:36, 36
  2378.                     elevation:25
  2379.                     padding:5
  2380.                     ripple_behavior:False
  2381.                     #md_bg_color:1,1,0,.5
  2382.                     #on_press: screen_man.current='doors'
  2383.                     FitImage:
  2384.                         source:'parks/lido.jpg'
  2385.                         radius: 36, 36
  2386.                         size_hint:1,3
  2387.                     MDLabel:
  2388.                         text:'Lido Beach Entebbe'
  2389.                         font_size:25
  2390.                         font_style:'H6'
  2391.                         font_name:'fonts/popins.ttf'
  2392.                         color:app.theme_cls.primary_color
  2393.                         halign:'center'
  2394.                         adaptive_height:True
  2395.  
  2396.                     MDLabel:
  2397.                         text:
  2398.                             "Lido Beach is a small beach in Entebbe.It's around 0.48km in length"
  2399.  
  2400.  
  2401.                         font_size:20   
  2402.                         bold:True
  2403.                         adaptive_height:True
  2404.  
  2405.                     MDFillRoundFlatButton:
  2406.                         text:'Book a tour Now'
  2407.                         md_bg_color: app.theme_cls.primary_color
  2408.                         size_hint:.8,.3
  2409.                         pos_hint:{'center_x':.5}
  2410.                         on_release:root.show_simple_dialog()
  2411.  
  2412.  
  2413.                 MDCard:
  2414.                     orientation:'vertical'
  2415.                     elevation:20
  2416.                     height:'520dp'
  2417.                     size_hint:1,None
  2418.                     #border_radius:25
  2419.                     radius:36, 36
  2420.                     elevation:25
  2421.                     adaptive_height:True
  2422.                     padding:5
  2423.                     ripple_behavior:False
  2424.                     #md_bg_color:1,1,0,.5
  2425.                     #on_press: screen_man.current='doors'
  2426.                     FitImage:
  2427.                         source:'parks/nakasero.jpg'
  2428.                         radius: 36, 36
  2429.                         size_hint:1,3
  2430.                     MDLabel:
  2431.                         text:'Nakasero Market'
  2432.                         font_size:25
  2433.                         font_style:'H6'
  2434.                         adaptive_height:True
  2435.                         font_name:'fonts/popins.ttf'
  2436.                         color:app.theme_cls.primary_color
  2437.                         halign:'center'
  2438.  
  2439.                     MDLabel:
  2440.                         text:
  2441.                             "Nakasero Market is a market in Kampala, Uganda, located at the foot of Nakasero hill. It sells fresh food, textiles, shoes and cheap electronics. Nakasero market is located 50 meters off the Entebbe Road.It is one of the biggest markets in Kampala city central business District"
  2442.                         font_size:20
  2443.                         bold:True
  2444.                         adaptive_height:True
  2445.  
  2446.                     MDFillRoundFlatButton:
  2447.                         text:'Book a tour Now'
  2448.                         md_bg_color: app.theme_cls.primary_color
  2449.                         size_hint:.8,.3
  2450.                         pos_hint:{'center_x':.5}
  2451.                         on_release:root.show_simple_dialog()
  2452.  
  2453.  
  2454.  
  2455.                 MDCard:
  2456.                     orientation:'vertical'
  2457.                     elevation:20
  2458.                     height:'650dp'
  2459.                     size_hint:1,None
  2460.                     #border_radius:25
  2461.                     radius:36, 36
  2462.                     elevation:25
  2463.                     ripple_behavior:False
  2464.                     #md_bg_color:1,1,0,.5
  2465.                     padding:5
  2466.                     #on_press: screen_man.current='doors'
  2467.                     FitImage:
  2468.                         source:'parks/Spennah-beach.jpg'
  2469.                         radius: 36, 36
  2470.                         size_hint:1,3
  2471.                     MDLabel:
  2472.                         text:'Spennah Beach Entebbe'
  2473.                         font_size:35
  2474.                         font_style:'H6'
  2475.                         adaptive_height:True
  2476.                         font_name:'fonts/popins.ttf'
  2477.                         color:app.theme_cls.primary_color
  2478.                         halign:'center'
  2479.  
  2480.                     MDLabel:
  2481.                         text:
  2482.                             "Spenah Beach is a private beach located the serene waters of Lake Victoria in Entebbe. It's available for families, friends, events and meet-ups"
  2483.                         font_size:20
  2484.                         bold:True
  2485.                         adaptive_height:True
  2486.  
  2487.                     MDFillRoundFlatButton:
  2488.                         text:'Book a tour Now'
  2489.                         md_bg_color: app.theme_cls.primary_color
  2490.                         size_hint:.8,.3
  2491.                         pos_hint:{'center_x':.5}
  2492.                         on_release:root.show_simple_dialog()
  2493.  
  2494.                 MDCard:
  2495.                     orientation:'vertical'
  2496.                     elevation:40
  2497.                     height:'650dp'
  2498.                     size_hint:1,None
  2499.                     padding:5
  2500.                     #border_radius:25
  2501.                     radius:36, 36
  2502.                     elevation:25
  2503.                     ripple_behavior:False
  2504.                     #md_bg_color:1,1,0,.5
  2505.                     #on_press: screen_man.current='doors'
  2506.                     FitImage:
  2507.                         source:'parks/sky beach.jpg'
  2508.                         radius: 36, 36
  2509.                         size_hint:1,3
  2510.  
  2511.                        
  2512.  
  2513.                     MDLabel:
  2514.                         text:'SKY Beach Entebbe'
  2515.                         font_size:30
  2516.                         halign:'center'
  2517.                         outline:True
  2518.                         outline_color:1,1,0,1
  2519.                         outline_width:1
  2520.                         adaptive_height:True
  2521.                         font_style:'H6'
  2522.                         font_name:'fonts/popins.ttf'
  2523.                         color:app.theme_cls.primary_color
  2524.  
  2525.                     MDFillRoundFlatButton:
  2526.                         text:'Book a tour Now'
  2527.                         md_bg_color: app.theme_cls.primary_color
  2528.                         size_hint:.8,.3
  2529.                         pos_hint:{'center_x':.5}
  2530.                         on_release: root.show_simple_dialog()
  2531.                            
  2532.                                
  2533.                 MDCard:
  2534.                     orientation:'vertical'
  2535.                     elevation:20
  2536.                     height:'650dp'
  2537.                     size_hint:1,None
  2538.                     #border_radius:25
  2539.                     radius:36, 36
  2540.                     padding:5
  2541.                     elevation:25
  2542.                     ripple_behavior:False
  2543.                     #md_bg_color:1,1,0,.5
  2544.                     #on_press: screen_man.current='doors'
  2545.                     FitImage:
  2546.                         source:'parks/eqator.jpg'
  2547.                         radius: 36, 36
  2548.                         size_hint:1,3
  2549.                     MDLabel:
  2550.                         text:'The Equator'
  2551.                         font_size:25
  2552.                         font_style:'H6'
  2553.                         font_name:'fonts/popins.ttf'
  2554.                         color:app.theme_cls.primary_color
  2555.                         halign:'center'
  2556.                         adaptive_height:True
  2557.  
  2558.                     MDLabel:
  2559.                         text:
  2560.                             "The Uganda equator is one of the most and well known landmarks in Uganda.” The intersection of the earth’s surface with the plane perpendicular to the earth’s axis of rotation and containing the earth’s center of mass” is what Wikipedia sometimes refers to the equator as, but it is still the imaginary line that divides the world into two halves"
  2561.                         font_size:20
  2562.                         bold:True
  2563.                         adaptive_height:True
  2564.  
  2565.                     MDFillRoundFlatButton:
  2566.                         text:'Book a tour Now'
  2567.                         md_bg_color: app.theme_cls.primary_color
  2568.                         size_hint:.8,.3
  2569.                         pos_hint:{'center_x':.5}
  2570.                         on_release: root.show_simple_dialog()
  2571.  
  2572.                 MDCard:
  2573.                     orientation:'vertical'
  2574.                     elevation:20
  2575.                     height:'650dp'
  2576.                     size_hint:1,None
  2577.                     #border_radius:25
  2578.                     radius:36, 36
  2579.                     elevation:25
  2580.                     padding:5
  2581.                     ripple_behavior:False
  2582.                     #md_bg_color:1,1,0,.5
  2583.                     #on_press: screen_man.current='doors'
  2584.                     FitImage:
  2585.                         source:'parks/owino.jpg'
  2586.                         radius: 36, 36
  2587.                         size_hint:1,3
  2588.                     MDLabel:
  2589.                         text:'Owino Market'
  2590.                         font_size:25
  2591.                         font_style:'H6'
  2592.                         adaptive_height:True
  2593.                         font_name:'fonts/popins.ttf'
  2594.                         color:app.theme_cls.primary_color
  2595.                         halign:'center'
  2596.  
  2597.                     MDLabel:
  2598.                         text:
  2599.                             "St Balikuddembe market was started in 1971 with 320 vendors who were reallocated by Kampala City Council from Nakasero Market to this site. The City Council named the new market; Municipal Market which was later renamed by vendors to Owino Market after an old man called Owino whom the vendors found on the site roasting maize and sweet potatoes."
  2600.                         font_size:20
  2601.                         bold:True
  2602.                         adaptive_height:True
  2603.  
  2604.                     MDFillRoundFlatButton:
  2605.                         text:'Book a tour Now'
  2606.                         md_bg_color: app.theme_cls.primary_color
  2607.                         size_hint:.8,.3
  2608.                         pos_hint:{'center_x':.5}
  2609.                         on_release: root.show_simple_dialog()
  2610.  
  2611.                 MDCard:
  2612.                     orientation:'vertical'
  2613.                     elevation:20
  2614.                     height:'650dp'
  2615.                     size_hint:1,None
  2616.                     #border_radius:25
  2617.                     radius:36, 36
  2618.                     elevation:25
  2619.                     padding:5
  2620.                     ripple_behavior:False
  2621.                     #md_bg_color:1,1,0,.5
  2622.                     #on_press: screen_man.current='doors'
  2623.                     FitImage:
  2624.                         source:'parks/Parliament.jpg'
  2625.                         radius: 36, 36
  2626.                         size_hint:1,3
  2627.                     MDLabel:
  2628.                         text:'Parliament'
  2629.                         font_size:25
  2630.                         font_style:'H6'
  2631.                         adaptive_height:True
  2632.                         font_name:'fonts/popins.ttf'
  2633.                         color:app.theme_cls.primary_color
  2634.                         halign:'center'
  2635.  
  2636.                     MDLabel:
  2637.                         text:
  2638.                             "The unicameral Parliament of Uganda is the country's legislative body. The most significant of the Ugandan parliament's functions is to pass laws which will provide good governance in the country. The government ministers are bound to answer to the people's representatives on the floor of the house."
  2639.                         font_size:20
  2640.                         bold:True
  2641.                         adaptive_height:True
  2642.  
  2643.                     MDFillRoundFlatButton:
  2644.                         text:'Book a tour Now'
  2645.                         md_bg_color: app.theme_cls.primary_color
  2646.                         size_hint:.8,.3
  2647.                         pos_hint:{'center_x':.5}
  2648.                         on_release: root.show_simple_dialog()
  2649.  
  2650. <CustomImageTile@SmartTileWithLabel>:
  2651.     size_hint_y:None
  2652.     size_hint_x:None
  2653.     height: '160dp'
  2654.     width: '160dp'
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement